POST
/
api
/
service
/
refund
/
create
curl --request POST \
  --url https://api.sand.getivy.de/api/service/refund/create \
  --header 'Content-Type: application/json' \
  --header 'X-Ivy-Api-Key: <api-key>' \
  --data '{
  "orderId": "<string>",
  "referenceId": "<string>",
  "bankStatementReference": "<string>",
  "amount": 123
}'
{
  "id": "<string>",
  "amount": 1,
  "currency": "EUR",
  "status": "initiated",
  "orderId": "<string>"
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json

Response

200 - application/json

Creates a refund and returns the details of created refund

The response is of type object.