POST api/Picking/GetUrgencyCount
Request Information
URI Parameters
None.
Body Parameters
SubPicking_GetUrgencyCountRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceUniqueId | string |
None. |
|
| IdWarehouse | integer |
None. |
|
| UrgencyLevel | integer |
None. |
|
| Page | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceUniqueId": "sample string 1",
"IdWarehouse": 2,
"UrgencyLevel": 3,
"Page": 4
}
application/xml, text/xml
Sample:
<SubPicking_GetUrgencyCountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models"> <DeviceUniqueId>sample string 1</DeviceUniqueId> <IdWarehouse>2</IdWarehouse> <Page>4</Page> <UrgencyLevel>3</UrgencyLevel> </SubPicking_GetUrgencyCountRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SubPicking_GetUrgencyCountResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | SubPicking_GetUrgencyCountResult |
None. |
|
| CounterNormal | integer |
None. |
|
| CounterUrgency | integer |
None. |
|
| CounterEmergency | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 0,
"CounterNormal": 1,
"CounterUrgency": 2,
"CounterEmergency": 3
}
application/xml, text/xml
Sample:
<SubPicking_GetUrgencyCountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models"> <CounterEmergency>3</CounterEmergency> <CounterNormal>1</CounterNormal> <CounterUrgency>2</CounterUrgency> <Result>GenericError</Result> </SubPicking_GetUrgencyCountResponse>