Returns a list of late notices based on the specified filters.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Page Number
Default value is
1. -
Field to sort by
-
Sorting direction
Values are
ASCorDESC. Default value isASC. -
Size per page
Default value is
60. -
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
curl \
--request GET 'https://wyzio.app/api-v1/late-notice'
Response examples (200)
[
{
"clientId": 42,
"clientName": "string",
"clientEmail": "string",
"clientECorrespondence": true,
"overdueAmount": 42.0,
"openAmount": 42.0,
"qrBillDataExists": true,
"clientLateNoticeEmail": "string"
}
]