POST api/OmsBulkUpdateProcessOnDate/POD-SKU
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| SiteCode | string |
None. |
|
| Sku | string |
None. |
|
| RequestedBy | string |
None. |
|
| PodDateTimeUtc | date |
None. |
|
| NewProcessOnDateUtc | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteCode": "sample string 1",
"Sku": "sample string 2",
"RequestedBy": "sample string 3",
"PodDateTimeUtc": "2026-01-12T13:42:10.1504922+00:00",
"NewProcessOnDateUtc": "2026-01-12T13:42:10.1504922+00:00"
}
application/xml, text/xml
Sample:
<CreateBatchingProcessRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DECK.OMS.Domain.Models"> <NewProcessOnDateUtc>2026-01-12T13:42:10.1504922+00:00</NewProcessOnDateUtc> <PodDateTimeUtc>2026-01-12T13:42:10.1504922+00:00</PodDateTimeUtc> <RequestedBy>sample string 3</RequestedBy> <SiteCode>sample string 1</SiteCode> <Sku>sample string 2</Sku> </CreateBatchingProcessRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ProcessOnDateBulkBatchingResponse
| Name | Description | Type | Additional Information |
|---|---|---|---|
| Result | IProcessOnDateBulkBatching |
None. |
|
| ResponseCode | APIResponseCodes |
None. |
|
| Message | string |
None. |
|
| CorrelationId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": null,
"ResponseCode": 0,
"Message": "sample string 1",
"CorrelationId": "sample string 2"
}
application/xml, text/xml
Sample:
<ProcessOnDateBulkBatchingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DECK.OMS.Domain.Models.API"> <CorrelationId>sample string 2</CorrelationId> <Message>sample string 1</Message> <ResponseCode>Success</ResponseCode> <Result i:nil="true" /> </ProcessOnDateBulkBatchingResponse>