These docs are for v1.2. Click to read the latest docs for v1.4.

Comunidade

Ask a Question
Back to All

Erro 500 - Pagamento

Estou tentando inicializar um pagamento no endpoint: {{baseUrl}}/v1/companies/{{companyId}}/transfers , mas esta dando somente status 500.

Quando passo esse body:

{
"type": "PIX",
"creditParty": { "keyType": "CPF","pixKey": "{{CHAVE_PIX_CPF}}"},
"amount": 10,
"reason": "Pagamento funcionou"

}

estou tendo este retorno da api, status 500:

{
"fault": {
"faultstring": "Execution of JS-BuildPostRequest failed with error: Javascript runtime error: "TypeError: Cannot read property "branchCode" from undefined. (buildPostRequest.js:16)"",
"detail": {
"errorcode": "steps.javascript.ScriptExecutionFailed"
}
}
}

Agora estou passando o body passando as informações do branchCode conforme documentação:

{
"type": "PIX",
"debitParty":{
"branchCode":50,
"number":0
},
"creditParty": {
"keyType": "CPF",
"pixKey": "{{CHAVE_PIX_CPF}}"
},
"amount": 10.10,
"scheduledDate": "2024-01-29T22:50:00.000Z",
"reason": "Pagamento funcionou"
}

e simplesmente só me retorna Status 500, sem body.