POST api/SendNotificationRedemptionByListOrderId
Request Information
URI Parameters
None.
Body Parameters
Multisponsor.NetCommerce.API.Models.RequestOfSystem.Collections.Generic.ListOfMultisponsor.NetCommerce.API.Models.RequestNotificationRedemption| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| ObjectRequest | Collection of Multisponsor.NetCommerce.API.Models.RequestNotificationRedemption |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"ObjectRequest": [
{
"ProgramId": 1,
"StoreOrderId": "sample string 2"
},
{
"ProgramId": 1,
"StoreOrderId": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RequestOfArrayOfRequestNotificationRedemption4w3blSIw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Multisponsor.NetCommerce.API.Models">
<ObjectRequest>
<RequestNotificationRedemption>
<ProgramId>1</ProgramId>
<StoreOrderId>sample string 2</StoreOrderId>
</RequestNotificationRedemption>
<RequestNotificationRedemption>
<ProgramId>1</ProgramId>
<StoreOrderId>sample string 2</StoreOrderId>
</RequestNotificationRedemption>
</ObjectRequest>
<token>sample string 1</token>
</RequestOfArrayOfRequestNotificationRedemption4w3blSIw>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Multisponsor.NetCommerce.API.Models.ResponseOfSystem.String| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | Collection of Multisponsor.NetCommerce.API.Models.MessageResult |
None. |
|
| ObjectResponse | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": [
{
"Message": "sample string 1"
},
{
"Message": "sample string 1"
}
],
"ObjectResponse": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Multisponsor.NetCommerce.API.Models">
<Message>
<MessageResult>
<Message>sample string 1</Message>
</MessageResult>
<MessageResult>
<Message>sample string 1</Message>
</MessageResult>
</Message>
<ObjectResponse>sample string 2</ObjectResponse>
<Status>true</Status>
</ResponseOfstring>