POST Partner/GetOrders
Request Information
URI Parameters
None.
Body Parameters
GetOrdersDTORequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex | integer |
Required |
|
| PageSize | integer |
Required |
|
| StartDate | string |
Required |
|
| EndDate | string |
Required |
|
| ParticipantIDs | Collection of integer |
Required |
|
| PartnerAccessKey | string |
None. |
|
| CampaignID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageIndex": 1,
"PageSize": 2,
"StartDate": "sample string 3",
"EndDate": "sample string 4",
"ParticipantIDs": [
1,
2
],
"PartnerAccessKey": "sample string 5",
"CampaignID": 6
}
application/xml, text/xml
Sample:
<GetOrdersDTORequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<PartnerAccessKey>sample string 5</PartnerAccessKey>
<CampaignID>6</CampaignID>
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<StartDate>sample string 3</StartDate>
<EndDate>sample string 4</EndDate>
<ParticipantIDs>
<long>1</long>
<long>2</long>
</ParticipantIDs>
</GetOrdersDTORequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |