POST /inventory-feed-products.json

POST /inventory-feed-products.json
application/json

Body Required

  • externalId string | null

    External

  • images array[string] | null Required

    Images

    Default value is [] (empty).

  • inventoryFeedId integer(int32) Required

    Inventory feed

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • createdAt string(date-time)

      Created at

    • externalId string | null

      External

    • id integer(int32)

      Id

    • images array[string] | null Required

      Images

      Default value is [] (empty).

    • inventoryFeedId integer(int32) Required

      Inventory feed

    • updatedAt string(date-time)

      Updated at

POST /inventory-feed-products.json
curl \
 --request POST 'http://api.example.com/v1/inventory-feed-products.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"externalId":"string","images":[],"inventoryFeedId":42}'
Request examples
{
  "externalId": "string",
  "images": [],
  "inventoryFeedId": 42
}
Response examples (200)
{
  "createdAt": "2025-05-04T09:42:00Z",
  "externalId": "string",
  "id": 42,
  "images": [],
  "inventoryFeedId": 42,
  "updatedAt": "2025-05-04T09:42:00Z"
}