PUT api/Content/v3/ClaimRewards
Request Information
URI Parameters
None.
Body Parameters
APIClaimRewards| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| RewardId | integer |
None. |
|
| Points | integer |
None. |
|
| Pin | string |
None. |
|
| Title | string |
None. |
|
| Size | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "c607049c-9bd8-4177-9f77-8575731f28bb",
"UserUniqueId": 3,
"RewardId": 4,
"Points": 5,
"Pin": "sample string 6",
"Title": "sample string 7",
"Size": "sample string 8"
}
application/xml, text/xml
Sample:
<APIClaimRewards xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <Pin>sample string 6</Pin> <Points>5</Points> <RewardId>4</RewardId> <Size>sample string 8</Size> <Title>sample string 7</Title> <UniqueId>c607049c-9bd8-4177-9f77-8575731f28bb</UniqueId> <UserUniqueId>3</UserUniqueId> </APIClaimRewards>
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>