Finance
Balance List
Condensed account list for selectors.
GET
/
finance
/
balances
/
list
Balance List
curl --request GET \
--url https://integrations.clopos.com/open-api/v2/finance/balances/list \
--header 'x-token: <api-key>'const options = {method: 'GET', headers: {'x-token': '<api-key>'}};
fetch('https://integrations.clopos.com/open-api/v2/finance/balances/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://integrations.clopos.com/open-api/v2/finance/balances/list"
headers = {"x-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": [
{
"id": 123,
"venue_id": 123,
"system_type": "<string>",
"name": "<string>",
"type": "<string>",
"amount": 123,
"position": 123
}
]
}Was this page helpful?
⌘I
Balance List
curl --request GET \
--url https://integrations.clopos.com/open-api/v2/finance/balances/list \
--header 'x-token: <api-key>'const options = {method: 'GET', headers: {'x-token': '<api-key>'}};
fetch('https://integrations.clopos.com/open-api/v2/finance/balances/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://integrations.clopos.com/open-api/v2/finance/balances/list"
headers = {"x-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": [
{
"id": 123,
"venue_id": 123,
"system_type": "<string>",
"name": "<string>",
"type": "<string>",
"amount": 123,
"position": 123
}
]
}