Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Request Code Samples
curl --location --request POST '/remittances/process' \
--header 'Authorization: Basic <encoded-value>'
Responses
application/json {
"id": "669a9ce91482bf548bb723f8",
"amount": 1,
"currency": "BRL",
"status": "PROCESSING",
"createdAt": "2024-07-19T14:05:45.306Z",
"remitAt": null
}
Modified at 2024-07-24 14:00:56