Check available balance
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/payouts/balance/available \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"subMerchantId": "874767775007"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/query/payouts/balance/available"
payload = { "subMerchantId": "874767775007" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({subMerchantId: '874767775007'})
};
fetch('https://sandbox-platform.jupico.com/v1/query/payouts/balance/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/payouts/balance/available';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({subMerchantId: '874767775007'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": {
"pending": 123,
"inTransit": 123,
"paid": 123,
"settled": 123
},
"query": {
"criteria": {},
"options": {}
}
}Query
Check available balance
Returns the submerchant’s total available balance for payouts.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
payouts
/
balance
/
available
Check available balance
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/payouts/balance/available \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"subMerchantId": "874767775007"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/query/payouts/balance/available"
payload = { "subMerchantId": "874767775007" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({subMerchantId: '874767775007'})
};
fetch('https://sandbox-platform.jupico.com/v1/query/payouts/balance/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/payouts/balance/available';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({subMerchantId: '874767775007'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": {
"pending": 123,
"inTransit": 123,
"paid": 123,
"settled": 123
},
"query": {
"criteria": {},
"options": {}
}
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
The unique identifier for the submerchant.
Example:
"874767775007"
Response
200 - application/json
findBalance
Whether the request was processed successfully. Declines return HTTP 200 with success: false.
Human-readable result message.
Machine-readable result code. See the Error Codes reference.
The response payload.
Show child attributes
Show child attributes
Echo of the query envelope that produced this result.
Show child attributes
Show child attributes
Last modified on August 31, 2026
Was this page helpful?

