GET
/
refund
/
{id}
curl --request GET \
  --url https://api-v2.ziina.com/api/refund/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "payment_intent_id": "<string>",
  "amount": 123,
  "currency_code": "<string>",
  "status": "pending",
  "created_at": "<string>",
  "error": {
    "message": "<string>",
    "code": "<string>"
  }
}

In order to call this endpoint your token must have write_refunds scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

id of the refund

Response

default - application/json

The response is of type object.