GET api/externalpicking/requestfilltask?wmslineid={wmslineid}
External picking application requests a forklift fill task to the picking place indicated by the product and shelf place of the picking line.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| wmslineid |
Identifier of the WMS picking task line resource for which to request a picking place fill task |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
FillTaskRequestResult| Name | Description | Type | Additional information |
|---|---|---|---|
| FillIsComing |
If true, a fill task was created or it did already exist. |
boolean |
None. |
| ResultDescription |
Description for the result, such as "Created fill task" or "Cannot find picking batch line". |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FillIsComing": true,
"ResultDescription": "sample string 2"
}
application/xml, text/xml
Sample:
<FillTaskRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMS.WebApiService.DTOs"> <FillIsComing>true</FillIsComing> <ResultDescription>sample string 2</ResultDescription> </FillTaskRequestResult>