curl --request GET \
--url https://api.openint.dev/v0/unified/accounting/customer-balance \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
{
"reportName": "<string>",
"reportDate": "<string>",
"currency": "<string>",
"entries": [
{
"customerId": "<string>",
"customerName": "<string>",
"balance": 123
}
],
"totalBalance": 123
}
Successful response
The response is of type object
.
curl --request GET \
--url https://api.openint.dev/v0/unified/accounting/customer-balance \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
{
"reportName": "<string>",
"reportDate": "<string>",
"currency": "<string>",
"entries": [
{
"customerId": "<string>",
"customerName": "<string>",
"balance": 123
}
],
"totalBalance": 123
}