Bulk update price and quantity
documentedUpdate price and quantity for multiple inventory items.
POST /sell/inventory/v1/bulk_update_price_quantityInventory Itemno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.ebay.com/sell/inventory/v1/bulk_update_price_quantity" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"requests": [ {"sku": "{{$sku1}}", "shipToLocationAvailability": {"quantity": {{$quantity1}}}, "offers": [{"offerId": "{{$offerId1}}", "price": {"currency": "USD", "value": "{{$price1}}"}, "availableQuantity": {{$availableQuantity1}} }]} , {"sku": "{{$sku2}}", "shipToLocationAvailability": {"quantity": {{$quantity2}}}, "offers": [{"offerId": "{{$offerId2}}", "price": {"currency": "USD", "value": "{{$price2}}"}, "availableQuantity": {{$availableQuantity2}} }]}]}'"