POST api/Notify/{id}

Documentation for 'Post'.

Request Information

Parameters

NameDescriptionAdditional information
value
Documentation for 'value'.

Define this parameter in the request body.

id
Documentation for 'id'.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "Request": "sample string 1",
  "MobileType": "sample string 2",
  "DeviceID": "sample string 3",
  "Message": "sample string 4",
  "Title": "sample string 5",
  "Type": "sample string 6",
  "Idx": 7,
  "Category_Idx": 8
}

text/xml

Sample:
<sNotify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DVMService.Models">
  <Category_Idx>8</Category_Idx>
  <DeviceID>sample string 3</DeviceID>
  <Idx>7</Idx>
  <Message>sample string 4</Message>
  <MobileType>sample string 2</MobileType>
  <Request>sample string 1</Request>
  <Title>sample string 5</Title>
  <Type>sample string 6</Type>
</sNotify>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
"sample string 1"

text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>