POST api/Notification?apikey={apikey}&externalReference={externalReference}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| apikey | string |
Required |
|
| externalReference | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PushInfoDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Language | string |
None. |
|
| Platform | string |
None. |
|
| Token | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Language": "sample string 1",
"Platform": "sample string 2",
"Token": "sample string 3"
},
{
"Language": "sample string 1",
"Platform": "sample string 2",
"Token": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfPushInfoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MPW.PIMS2016.BL.PimsApi.Model">
<PushInfoDTO>
<Language>sample string 1</Language>
<Platform>sample string 2</Platform>
<Token>sample string 3</Token>
</PushInfoDTO>
<PushInfoDTO>
<Language>sample string 1</Language>
<Platform>sample string 2</Platform>
<Token>sample string 3</Token>
</PushInfoDTO>
</ArrayOfPushInfoDTO>