POST /inventory-feed-price-lists.json
Body Required
-
Inventory feed
-
Price list
POST /inventory-feed-price-lists.json
curl \
-X POST http://api.example.com/v1/inventory-feed-price-lists.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"inventoryFeedId":42,"priceListId":42}'
Request example
{
"inventoryFeedId": 42,
"priceListId": 42
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"inventoryFeedId": 42,
"priceListId": 42,
"updatedAt": "2024-05-04T09:42:00+00:00"
}