POST
/
v2
/
pix
/
payment
Enviar PIX (saque)
curl --request POST \
  --url https://seu-dominio.com/v2/pix/payment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 25,
  "creditParty": {
    "name": "<string>",
    "keyType": "EMAIL",
    "key": "<string>",
    "taxId": "<string>"
  },
  "external_id": "<string>",
  "description": "<string>",
  "postbackUrl": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Token retornado por POST /v2/oauth/token

Body

application/json
amount
number
required
Example:

25

creditParty
object
required
external_id
string
description
string
postbackUrl
string<uri>

Response

OK

The response is of type object.