POST api/OmsRequeue/outbound-queue/search
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| SearchCriteria | SearchCriteria |
None. |
Request Formats
application/json, text/json
Sample:
{
"SearchCriteria": {
"Processed": 1,
"Error": 2,
"Path": "sample string 3",
"CreatedStartUtc": "2025-12-20T21:14:24.3606686+00:00",
"CreatedEndUtc": "2025-12-20T21:14:24.3606686+00:00",
"SentStartUtc": "2025-12-20T21:14:24.3606686+00:00",
"SentEndUtc": "2025-12-20T21:14:24.3606686+00:00",
"QueueTypeId": 4,
"CurrentSiteId": 5,
"Orders": "sample string 6"
}
}
application/xml, text/xml
Sample:
<OutboundRequeueSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DECK.OMS.Domain.Models.API">
<SearchCriteria xmlns:d2p1="http://schemas.datacontract.org/2004/07/DECK.OMS.Domain.Models">
<d2p1:CreatedEndUtc>2025-12-20T21:14:24.3606686+00:00</d2p1:CreatedEndUtc>
<d2p1:CreatedStartUtc>2025-12-20T21:14:24.3606686+00:00</d2p1:CreatedStartUtc>
<d2p1:CurrentSiteId>5</d2p1:CurrentSiteId>
<d2p1:Error>2</d2p1:Error>
<d2p1:Orders>sample string 6</d2p1:Orders>
<d2p1:Path>sample string 3</d2p1:Path>
<d2p1:Processed>1</d2p1:Processed>
<d2p1:QueueTypeId>4</d2p1:QueueTypeId>
<d2p1:SentEndUtc>2025-12-20T21:14:24.3606686+00:00</d2p1:SentEndUtc>
<d2p1:SentStartUtc>2025-12-20T21:14:24.3606686+00:00</d2p1:SentStartUtc>
</SearchCriteria>
</OutboundRequeueSearchRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutboundRequeueManagerModelResponse
| Name | Description | Type | Additional Information |
|---|---|---|---|
| ResponseCode | APIResponseCodes |
None. |
|
| Message | string |
None. |
|
| CorrelationId | string |
None. |
|
| Model | RequeueManagerModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 0,
"Message": "sample string 1",
"CorrelationId": "sample string 2",
"Model": {
"ValidationNumber": "sample string 1",
"ProcessRequeue": true,
"Message": "sample string 3",
"RequeueIds": [
1,
2
],
"Sites": null,
"QueueType": null,
"Search": {
"Processed": 1,
"Error": 2,
"Path": "sample string 3",
"CreatedStartUtc": "2025-12-20T21:14:24.3763074+00:00",
"CreatedEndUtc": "2025-12-20T21:14:24.3763074+00:00",
"SentStartUtc": "2025-12-20T21:14:24.3763074+00:00",
"SentEndUtc": "2025-12-20T21:14:24.3763074+00:00",
"QueueTypeId": 4,
"CurrentSiteId": 5,
"Orders": "sample string 6"
},
"QueuedItems": null,
"ErrorMessage": "sample string 4"
}
}
application/xml, text/xml
Sample:
<OutboundRequeueManagerModelResponse 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>
<Model xmlns:d2p1="http://schemas.datacontract.org/2004/07/DECK.OMS.Domain.Models">
<d2p1:ErrorMessage>sample string 4</d2p1:ErrorMessage>
<d2p1:Message>sample string 3</d2p1:Message>
<d2p1:ProcessRequeue>true</d2p1:ProcessRequeue>
<d2p1:QueueType xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
<d2p1:QueuedItems xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
<d2p1:RequeueIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</d2p1:RequeueIds>
<d2p1:Search>
<d2p1:CreatedEndUtc>2025-12-20T21:14:24.3763074+00:00</d2p1:CreatedEndUtc>
<d2p1:CreatedStartUtc>2025-12-20T21:14:24.3763074+00:00</d2p1:CreatedStartUtc>
<d2p1:CurrentSiteId>5</d2p1:CurrentSiteId>
<d2p1:Error>2</d2p1:Error>
<d2p1:Orders>sample string 6</d2p1:Orders>
<d2p1:Path>sample string 3</d2p1:Path>
<d2p1:Processed>1</d2p1:Processed>
<d2p1:QueueTypeId>4</d2p1:QueueTypeId>
<d2p1:SentEndUtc>2025-12-20T21:14:24.3763074+00:00</d2p1:SentEndUtc>
<d2p1:SentStartUtc>2025-12-20T21:14:24.3763074+00:00</d2p1:SentStartUtc>
</d2p1:Search>
<d2p1:Sites xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
<d2p1:ValidationNumber>sample string 1</d2p1:ValidationNumber>
</Model>
<ResponseCode>Success</ResponseCode>
</OutboundRequeueManagerModelResponse>