Submit Verification (Batch)
POST/api/amazon/:integrationInstance/draft-inbound-plans/portal/:hashedDraftInboundPlanId/submit-verification-batch
Submit the whole verification in one call: send one entry per product with the quantity the supplier can fulfill, and the plan is finalized immediately. Each product's quantity is distributed across that product's lines (each line capped at its requested quantity). The plan moves to verified, or verified_with_adjustments when any product was verified short. Fails with 400 cant_submit_verification_unless_all_items_verified if any product on the plan is omitted (every product must be included). Each item requires a product_id and a non-negative integer verified_quantity. No bearer token — access is granted by the encrypted hashedDraftInboundPlanId in the URL (single plan scope).
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 422
- 429
OK
Bad Request
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.
Unprocessable Entity
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.