curl --request GET \
--url https://api.skulabs.com/batch/get \
--header 'Authorization: Bearer <token>'{
"batch": {
"_id": "507f1f77bcf86cd799439011",
"number": 123,
"orders": [
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"bin": "<string>",
"status": "<string>",
"items": [
{}
],
"scans": [
{}
],
"misscans": [
{}
],
"shipments": [
{}
],
"purchase_orders": [
{}
],
"log": [
{}
],
"inventory": [
{}
],
"combined_order_numbers": [
"<string>"
],
"stash": {},
"barcodes": [
{}
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"notes": "<string>",
"batch_number": 123
}
],
"state": "pick",
"status": "opened",
"log": [
{
"user_id": "507f1f77bcf86cd799439011",
"action": "<string>",
"time": "2025-01-15T12:00:00.000Z"
}
],
"ship_end": "2025-01-15T12:00:00.000Z",
"batch_settings": {
"name": "<string>",
"type": "<string>",
"warehouse_filters": [
"<string>"
],
"include_out_of_stock": true,
"include_partially_fulfillable": true,
"ship_mode": "<string>",
"n_sku_batch": true,
"same": true
},
"inventory": [
{}
],
"inventory_map": {}
}
}Retrieve batch details by ID, including orders and fulfillment progress.
curl --request GET \
--url https://api.skulabs.com/batch/get \
--header 'Authorization: Bearer <token>'{
"batch": {
"_id": "507f1f77bcf86cd799439011",
"number": 123,
"orders": [
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"bin": "<string>",
"status": "<string>",
"items": [
{}
],
"scans": [
{}
],
"misscans": [
{}
],
"shipments": [
{}
],
"purchase_orders": [
{}
],
"log": [
{}
],
"inventory": [
{}
],
"combined_order_numbers": [
"<string>"
],
"stash": {},
"barcodes": [
{}
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"notes": "<string>",
"batch_number": 123
}
],
"state": "pick",
"status": "opened",
"log": [
{
"user_id": "507f1f77bcf86cd799439011",
"action": "<string>",
"time": "2025-01-15T12:00:00.000Z"
}
],
"ship_end": "2025-01-15T12:00:00.000Z",
"batch_settings": {
"name": "<string>",
"type": "<string>",
"warehouse_filters": [
"<string>"
],
"include_out_of_stock": true,
"include_partially_fulfillable": true,
"ship_mode": "<string>",
"n_sku_batch": true,
"same": true
},
"inventory": [
{}
],
"inventory_map": {}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Batch ID to retrieve
"507f1f77bcf86cd799439011"
Batch number to retrieve
Full batch detail with orders, inventory, and scan data
Show child attributes