Skip to main content
POST
/
api
/
v1
/
refunds
Create refund
curl --request POST \
  --url https://meet.briq.tz/api/v1/refunds \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "transaction_id": "<string>",
  "amount": 123
}
'
{}

Authorizations

Authorization
string
header
required

API key obtained from the merchant dashboard. When using the 'Try It' feature, enter only the key—the 'Bearer ' prefix is added automatically. For direct API calls, the 'Authorization: Bearer ' format is mandatory.

Headers

Idempotency-Key
string<uuid>
required

Body

application/json
transaction_id
string
required
amount
number
required
reason
enum<string>
required
Available options:
customer_request,
fraud,
duplicate,
other

Response

201 - application/json

Created

The response is of type object.