POST v1/notification/push/operator

Request Information

URI Parameters

None.

Body Parameters

PushNotificationOperatorDto
NameDescriptionTypeAdditional information
Title

string

None.

Type

string

None.

Details

string

None.

OperatorId

globally unique identifier

None.

SendSMS

boolean

None.

additionalData

Collection of PushNotificationAdditionalDataDto

None.

Request Formats

application/json, text/json

Sample:
{
  "title": "sample string 1",
  "type": "sample string 2",
  "details": "sample string 3",
  "operatorId": "382b4d53-a6bb-4d61-8098-20e5263a1212",
  "sendSMS": true,
  "additionalData": [
    {
      "key": "sample string 1",
      "value": "sample string 2"
    },
    {
      "key": "sample string 1",
      "value": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<PushNotificationOperatorDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OrionDAL.ApiModels.Version1">
  <Details>sample string 3</Details>
  <OperatorId>382b4d53-a6bb-4d61-8098-20e5263a1212</OperatorId>
  <SendSMS>true</SendSMS>
  <Title>sample string 1</Title>
  <Type>sample string 2</Type>
  <additionalData>
    <PushNotificationAdditionalDataDto>
      <Key>sample string 1</Key>
      <Value>sample string 2</Value>
    </PushNotificationAdditionalDataDto>
    <PushNotificationAdditionalDataDto>
      <Key>sample string 1</Key>
      <Value>sample string 2</Value>
    </PushNotificationAdditionalDataDto>
  </additionalData>
</PushNotificationOperatorDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.