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 GET '/customers/43278243803/balance' \
--header 'Authorization: Basic <encoded-value>'
Responses
application/json {
"available": 2999,
"pending": 1200,
"blocked": 0
}
Modified at 2024-07-24 14:00:52