Sign in

Create or replace inventory item

documented

Create or replace a single inventory item for the given SKU.

PUT /sell/inventory/v1/inventory_item/{sku}Inventory Itemno implementation yet0 runs
No 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/inventory_item/{{$sku}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Content-Language: en-US" \
  -d '{"availability":{"shipToLocationAvailability":{"quantity":{{$quantity}}}}, "condition":"{{$condition}}", "product": {"title":"{{$title}}", "description":"{{$description}}", "brand":"{{$brand}}", "mpn":"{{$mpn}}", "imageUrls":["{{$imageUrl1}}","{{$imageUrl2}}","{{$imageUrl3}}"]}}'