Finance
Balance Transactions
Transactions grouped by account. Proxies to client-api finance/balance/transaction.
GET
/
finance
/
balances
/
transactions
Balance Transactions
curl --request GET \
--url https://integrations.clopos.com/open-api/v2/finance/balances/transactions \
--header 'x-token: <api-key>'const options = {method: 'GET', headers: {'x-token': '<api-key>'}};
fetch('https://integrations.clopos.com/open-api/v2/finance/balances/transactions', 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/transactions"
headers = {"x-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": [
{
"id": 123,
"venue_id": 123,
"cid": "<string>",
"group": "<string>",
"type": "<string>",
"account_type": "<string>",
"indicator": true,
"category_id": 123,
"user_id": 123,
"operation_id": 123,
"receipt_id": 123,
"sale_type_id": 123,
"customer_id": 123,
"supplier_id": 123,
"payment_method_id": 123,
"terminal_id": 123,
"returns_id": 123,
"staff_id": 123,
"balance_id": 123,
"from_balance_id": 123,
"amount": 123,
"before_amount": 123,
"after_amount": 123,
"description": "<string>",
"service_name": "<string>",
"service_ref_id": "<string>",
"operated_at": "2023-11-07T05:31:56Z",
"shift_date": "2023-12-25",
"accounting_period": "2023-12-25"
}
]
}Was this page helpful?
⌘I
Balance Transactions
curl --request GET \
--url https://integrations.clopos.com/open-api/v2/finance/balances/transactions \
--header 'x-token: <api-key>'const options = {method: 'GET', headers: {'x-token': '<api-key>'}};
fetch('https://integrations.clopos.com/open-api/v2/finance/balances/transactions', 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/transactions"
headers = {"x-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": [
{
"id": 123,
"venue_id": 123,
"cid": "<string>",
"group": "<string>",
"type": "<string>",
"account_type": "<string>",
"indicator": true,
"category_id": 123,
"user_id": 123,
"operation_id": 123,
"receipt_id": 123,
"sale_type_id": 123,
"customer_id": 123,
"supplier_id": 123,
"payment_method_id": 123,
"terminal_id": 123,
"returns_id": 123,
"staff_id": 123,
"balance_id": 123,
"from_balance_id": 123,
"amount": 123,
"before_amount": 123,
"after_amount": 123,
"description": "<string>",
"service_name": "<string>",
"service_ref_id": "<string>",
"operated_at": "2023-11-07T05:31:56Z",
"shift_date": "2023-12-25",
"accounting_period": "2023-12-25"
}
]
}