PUT api/Content/v3/AddRemoveCheckinToast
Request Information
URI Parameters
None.
Body Parameters
APICheckInToast| Name | Description | Type | Additional information |
|---|---|---|---|
| UserUniqueId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| Toasted | boolean |
None. |
|
| CheckinHistoryId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserUniqueId": 1,
"CustomerId": 2,
"UniqueId": "57cef384-1d6b-4760-b695-cab4b9ef321f",
"Toasted": true,
"CheckinHistoryId": 5
}
application/xml, text/xml
Sample:
<APICheckInToast xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CheckinHistoryId>5</CheckinHistoryId> <CustomerId>2</CustomerId> <Toasted>true</Toasted> <UniqueId>57cef384-1d6b-4760-b695-cab4b9ef321f</UniqueId> <UserUniqueId>1</UserUniqueId> </APICheckInToast>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Message>sample string 2</Message> <Status>true</Status> </APIResult>