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 samples
curl --location --request GET 'https://apitest.wooshpay.com/v1/balance' \
--header 'Accept;' \
--header 'Authorization: Basic Og=='
Responses
application/json available
array [object {2}]
optionalFunds that are available to be transferred or paid out
Three-letter ISO currency code, in lowercase. Must be a supported currency.
pending
array [object {2}]
optionalFunds that are not yet available in the balance.
Three-letter ISO currency code, in lowercase. Must be a supported currency.
Has the value true if the object exists in live mode or the value false if the object exists in test mode.
{
"object": "balance",
"available": [
{
"amount": 1001353,
"currency": "eur"
},
{
"amount": 33143,
"currency": "gbp"
},
{
"amount": -62,
"currency": "usd"
}
]
}
Modified at 2024-02-27 07:36:07