Create an inventory request (Beta) Run in API Explorer
Ask AI
POST
/api/external/hub/v1/inventory_requests
curl \
--request POST 'https://api.useshelf.com/api/external/hub/v1/inventory_requests' \
--header "Content-Type: application/json" \
--data '{"warehouse_id":42,"notes":"string","estimated_ship_date":"2026-05-04","shipment_method":"CUSTOMER","packslip_source":"CUSTOMER","items":[{"id":42,"mpn":"string","listing_id":42,"listing_sku":"string","quantity":42,"case_unit":"string","exp_date":"2026-05-04","lot_number":"string"}]}'
Request examples
{
"warehouse_id": 42,
"notes": "string",
"estimated_ship_date": "2026-05-04",
"shipment_method": "CUSTOMER",
"packslip_source": "CUSTOMER",
"items": [
{
"id": 42,
"mpn": "string",
"listing_id": 42,
"listing_sku": "string",
"quantity": 42,
"case_unit": "string",
"exp_date": "2026-05-04",
"lot_number": "string"
}
]
}
Response examples (401)
{
"error": "string"
}
Response examples (422)
{
"success": true,
"errors": [
"string"
]
}
Response examples (200)
{
"success": true,
"errors": [
"string"
],
"ir_number": "string"
}