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>"
}
'