POST
/
v1
/
orders
/
{order_reference_id}
/
refund
Refund Request
curl --request POST \
  --url https://sandbox.gateway.sezzle.com/v1/orders/{order_reference_id}/refund \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "refund_id": "41a2O9Lv-7",
  "amount": {
    "amount_in_cents": 500,
    "currency": "USD"
  },
  "refund_reason": "Item returned by user"
}'
{
  "amount": {
    "amount_in_cents": 500,
    "currency": "USD"
  },
  "refund_id": "41a2O9Lv-7",
  "refund_reason": "Item returned by user"
}

You are viewing Version 1 of the Sezzle API. Check out the current version!

Authorizations

Authorization
string
header
required

The authentication token generated from providing API Keys to Sezzle Gateway

Path Parameters

order_reference_id
string
required

The Order Reference ID to update

Body

application/json

Response

200
application/json

Successful Operation

The response is of type object.