Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Client IDs filter.
Supported values:- ID
- Multiple values separated by
;
- 10
- 10;15;20
-
Overdue amount filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Open amount filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
GET
/api-v1/late-notice/summary
curl \
--request GET 'https://wyzio.app/api-v1/late-notice/summary'
Response examples (200)
{
"lines": [
{
"clientId": 42,
"clientName": "string",
"clientEmail": "string",
"clientECorrespondence": true,
"overdueAmount": 42.0,
"openAmount": 42.0,
"qrBillDataExists": true,
"clientLateNoticeEmail": "string"
}
],
"count": 42,
"totals": {
"clientId": 42,
"clientName": "string",
"clientEmail": "string",
"clientECorrespondence": true,
"overdueAmount": 42.0,
"openAmount": 42.0,
"qrBillDataExists": true,
"clientLateNoticeEmail": "string"
}
}