Sign in

Issue refund

documented

Issue a full or partial refund to a buyer for an order or specific line items.

POST /sell/fulfillment/v1/order/{orderId}/issue_refundOrdersno 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/{{$order_id}}/issue_refund" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"reasonForRefund": "{{$reasonForRefund}}", "comment": "{{$comment}}", "orderLevelRefundAmount": {"currency": "{{$currency}}", "value": "{{$orderRefundValue}}"}}'
Issue refund · ebay · OpenIntegrations