Submit Tracking to Faire (FBM)
POST/api/faire/orders/:order/submit-tracking
Manually retry tracking submission for an FBM Faire order.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Dispatches a background job for the most recent fulfilled SalesOrderFulfillment that has a tracking number. The job calls Faire's per-line-item fulfillment endpoint (POST /api/v2/brand/orders/{order_id}/items/{item_id}/fulfillments) for each item in the shipment, with the carrier, tracking code, shipped-at timestamp, and quantity.
Useful when an automatic submission failed and the user wants to retry. Job retries up to 3 times with exponential backoff (1m / 5m / 15m). Final status is reflected in tracking_submission_status on the order (pending, submitted, or failed) along with tracking_submission_error and tracking_submission_attempts.
Errors:
422— Instance is FBF (tracking is owned by Faire), no SKU sales order linked, or no fulfilled shipment with a tracking number found.
Request
Responses
- 200
- 401
- 403
- 404
- 422
- 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.
Unprocessable Entity
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.