Answer
To retrieve the Batch ID associated with containers, use the POST /inventory/containers/search API. This endpoint allows you to search for multiple containers in a single request by providing their container barcodes in the request payload.
Sample Request
{
"data": {
"type": "containerSearch",
"attributes": {
"barcodes": [
"1233456",
"1233457",
"1233458"
]
}}}
Notes
- Provide the container barcodes as an array.
- Ensure that there is no trailing comma after the last barcode.
- The response includes container content information, where the associated Batch ID can be found.
Comments
0 comments
Article is closed for comments.