curl --request POST \
--url http://api.contabull.com/charges \
--header 'Content-Type: application/json' \
--data '{
"accountId": "<string>",
"amountCents": 2,
"currency": "BRL",
"externalId": "<string>",
"sourceKey": "<string>",
"methods": [
"boleto"
],
"customer": {
"name": "<string>",
"document": "<string>",
"type": "individual",
"address": {
"street": "<string>",
"number": "<string>",
"postalCode": "<string>",
"complement": "<string>",
"neighborhood": "<string>",
"city": "<string>",
"countryCode": "<string>",
"state": "<string>"
}
},
"taxes": {
"fine": 123,
"interest": 123
},
"dueAt": "2023-11-07T05:31:56Z",
"expireAt": "2023-11-07T05:31:56Z"
}'