Skip to main content
POST
/
api
/
v1
/
inventory
/
brand
Send 846 Inventory Advice (Brand)
curl --request POST \
  --url https://api.retailreadyai.com/api/v1/inventory/brand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "sku": "PILLOW-01",
      "available_quantity": 120
    },
    {
      "sku": "PILLOW-02",
      "available_quantity": 0
    }
  ]
}
'
{
  "message": "846 inventory advice sent successfully",
  "data": {
    "results": [
      {
        "organization_id": "8a47e0d6-4f12-4a9e-9c6a-2d3f9e0b8a01",
        "edi_config_id": "1f2c1c4b-3d40-4e2c-8a8a-39d1e0a4cc11",
        "retailer_id": "7eab3720-1944-4b01-aea6-972492f017e5",
        "retailer_name": "Target",
        "brand_name": "Acme Outdoor",
        "organization_name": "Acme Holdings",
        "success": true,
        "edi_transaction_id": "f2a73e8b-3c8b-4f1e-a4d2-1c2cda30c6e9",
        "error": null,
        "failed_skus": null
      },
      {
        "organization_id": "5d92aa31-7b6e-4d52-b0c8-1e44f7c2b9d2",
        "edi_config_id": "9b4f1d2e-7a3c-4e5b-8f9a-12cd34ef5678",
        "retailer_id": "7eab3720-1944-4b01-aea6-972492f017e5",
        "retailer_name": "Target",
        "brand_name": "Acme Apparel",
        "organization_name": "Acme Apparel Co",
        "success": true,
        "edi_transaction_id": "ab12cd34-ef56-7890-ab12-cd34ef567890",
        "error": null,
        "failed_skus": null
      }
    ],
    "summary": {
      "total": 2,
      "succeeded": 2,
      "failed": 0
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.retailreadyai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
items
object[]
required

A complete snapshot of on-hand inventory for this brand. Include every SKU you stock, any SKU you omit will not appear on the documents sent to retailers. Required field, between 1 and 1000 entries per request, and SKUs must be unique within the request.

Required array length: 1 - 1000 elements

Response

846 inventory advice sent successfully for every connected organization. Each entry in results carries an organization_id and organization_name so you can attribute the outcome.

message
string
Example:

"846 inventory advice sent successfully"

data
object