Sign in

Create shipping fulfillment

documented

Create shipping fulfillment for the specified order and line items.

POST /sell/fulfillment/v1/order/{orderId}/shipping_fulfillmentShipping Fulfillmentsno 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/fulfillment/v1/order/{{$orderId}}/shipping_fulfillment" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"lineItems":[{"lineItemId":"{{$lineItemId}}","quantity":{{$quantity}}}],"shippedDate":"{{$shippedDate}}","shippingCarrierCode":"{{$shippingCarrierCode}}","trackingNumber":"{{$trackingNumber}}"}'