POST api/OmsDssReporting
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteCode | string |
None. |
|
| VerificationKey | string |
None. |
|
| TimestampUTC | string |
None. |
|
| APIUsername | string |
None. |
|
| Type | RequestType |
None. |
|
| Site | integer |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| ExportSection | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteCode": "sample string 1",
"VerificationKey": "sample string 2",
"TimestampUTC": "sample string 3",
"APIUsername": "sample string 4",
"Type": 1,
"Site": 5,
"StartDate": "2025-12-20T20:11:48.6871595+00:00",
"EndDate": "2025-12-20T20:11:48.6871595+00:00",
"ExportSection": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<ReportingRequestJson xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DECK.OMS.Common.Contracts.API">
<APIUsername>sample string 4</APIUsername>
<EndDate>2025-12-20T20:11:48.6871595+00:00</EndDate>
<ExportSection xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ExportSection>
<Site>5</Site>
<SiteCode>sample string 1</SiteCode>
<StartDate>2025-12-20T20:11:48.6871595+00:00</StartDate>
<TimestampUTC>sample string 3</TimestampUTC>
<Type>Orders</Type>
<VerificationKey>sample string 2</VerificationKey>
</ReportingRequestJson>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | APIResponseCodes |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 0,
"Message": "sample string 1"
}
application/xml, text/xml
Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DECK.Core.Common.Contracts.API"> <Message>sample string 1</Message> <ResponseCode>Success</ResponseCode> </GenericResponse>