Get Stock Take
GET/api/stock-takes/:stock_take
Get a single stock take with full details including items, warehouse, parent and child stock takes.
inventory:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Authentication: Requires Bearer token.
Loads: warehouse, stockTakeItems (with inventoryMovements.fifoLayer for closed takes), parentStockTake, childStockTakes.
Response includes deletable (boolean) and delete_blocked_reasons (string[]): a draft/open stock take is always deletable; a closed stock take is deletable only when none of its FIFO cost layers have been consumed (otherwise deletable is false and delete_blocked_reasons lists the blocking stock take items).
The stock take exposes is_blind. For a blind count, items that have not yet been counted return null snapshot_inventory / snapshot_available / snapshot_reserved / snapshot_committed_to_fulfillment until they are counted. Each item also exposes its variance_reason (root-cause code, or null).
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
Response Headers
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.