POST api/Service/RemoveToken

Request Information

URI Parameters

None.

Body Parameters

RemoveTokenRequest
NameDescriptionTypeAdditional information
Input

RemoveTokenInputModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Input": {
    "NotificationToken": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<RemoveTokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <Input>
    <NotificationToken>sample string 1</NotificationToken>
  </Input>
</RemoveTokenRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoveTokenResponse
NameDescriptionTypeAdditional information
OutPut

RemoveTokenOutPutModel

None.

Response Formats

application/json, text/json

Sample:
{
  "OutPut": {
    "Success": true,
    "Message": "sample string 2",
    "ObjectID": 3
  }
}

application/xml, text/xml

Sample:
<RemoveTokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <OutPut>
    <Message>sample string 2</Message>
    <ObjectID>3</ObjectID>
    <Success>true</Success>
  </OutPut>
</RemoveTokenResponse>