GET
/
v1
/
refunds
/
{refund_id}
curl --request GET \
  --url https://api.stan-app.fr/v1/refunds/{refund_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "refund_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "payment_id": "<string>",
  "amount": 123,
  "status": "payment_holding",
  "reason": "requested_by_customer",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

refund_id
string
required

UID of the refund

Response

200
application/json

successful operation

The response is of type object.