Get Product Drop-ship Status
GET/api/products/:product/dropship-status
Return the drop-ship eligibility checklist for a product — whether a sales order line for this product will auto-route to a supplier's drop-ship warehouse, and which gate conditions are currently met or failing.
Optionally scope the check to a specific supplier with the supplier_id query parameter; omit it to evaluate against the product's default supplier.
A line auto-routes to a supplier's drop-ship warehouse when the product is drop-shippable, drop-shipping is enabled, the supplier has a drop-ship warehouse ranked in the warehouse priority list, and its live stock covers the line — there is no per-supplier-product opt-in. The gates object reports each eligibility condition, and missing lists the labels of the gates that are not yet satisfied.
Authentication: Requires Bearer token.
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.