DELETE
/
v1.1
/
payout
curl --request DELETE \
  --url https://api.paymee.com.br/v1.1/payout \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-token: <x-api-token>' \
  --data '{
  "reason": "Customer requested cancellation",
  "uuid": "83abc908-9233-4b66-b455-2339809886b1"
}'
{
  "status": 0,
  "message": "success"
}

Headers

x-api-key
string
required
Example:

"your-x-api-key"

x-api-token
string
required
Example:

"your-x-api-token"

Body

application/json
uuid
string
required

Payout's UUID to be canceled

Maximum length: 36
Example:

"83abc908-9233-4b66-b455-2339809886b1"

reason
string

Cancel reason (optional)

Maximum length: 255
Example:

"Customer requested cancellation"

Response

200
application/json
Payout successfully canceled
status
number

Response status code

Example:

0

message
string

Response status message

Example:

"success"