Estrutura Correta para Payevo
Estrutura JSON Correta:
{
"customer": {
"name": "Jorge Santos",
"email": "[email protected]",
"phone": "11983272733",
"document": {
"number": "04281554645",
"type": "CPF"
}
},
"paymentMethod": "PIX",
"pix": {
"expiresInDays": 1
},
"amount": 10000,
"items": [
{
"title": "Produto Teste 01",
"unitPrice": 10000,
"quantity": 1,
"externalRef": "PRODTESTE01"
}
]
}Conversão de Valores:
- R$ 100,00 = 10000 centavos
- R$ 50,00 = 5000 centavos
- R$ 1,00 = 100 centavos
- R$ 0,50 = 50 centavos
cURL de Exemplo:
curl --request POST \
--url https://apiv2.payevo.com.br/functions/v1/transactions \
--header 'Content-Type: application/json' \
--header 'accept: application/json' \
--header 'authorization: Basic SUA_CHAVE_CRIPTOGRAFADA_AQUI' \
--data '{"customer":{"name":"Jorge Santos","email":"[email protected]","phone":"11983272733","document":{"number":"04281554645","type":"CPF"}},"paymentMethod":"PIX","pix":{"expiresInDays":1},"amount":10000,"items":[{"title":"Produto Teste 01","unitPrice":10000,"quantity":1,"externalRef":"PRODTESTE01"}]}'Teste da Conversão:
| Valor em Reais | Valor em Centavos |
|---|
| R$ 1,00 | 100 centavos |
| R$ 5,00 | 500 centavos |
| R$ 10,00 | 1000 centavos |
| R$ 50,00 | 5000 centavos |
| R$ 100,00 | 10000 centavos |
| R$ 150,50 | 15050 centavos |
| R$ 1.000,00 | 100000 centavos |
← Testar com Debug
← Gerar Cobrança