POST /inventory-feed-products.json
Body Required
-
externalId string | null
External
-
Images
Default value is
[]
(empty). -
Inventory feed
POST /inventory-feed-products.json
curl \
-X POST http://api.example.com/v1/inventory-feed-products.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"externalId":"string","images":[],"inventoryFeedId":42}'
Request example
{
"externalId": "string",
"images": [],
"inventoryFeedId": 42
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"externalId": "string",
"id": 42,
"images": [],
"inventoryFeedId": 42,
"updatedAt": "2024-05-04T09:42:00+00:00"
}