Returns a list of payables 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. -
Supported type filter
Values are
PURCHASE_INVOICES,SALES_INVOICES, orPAYROLL. -
Payment ID filter.
Multi-value supported. Example: value1;value2 -
Invoice ID filter.
Multi-value supported. Example: value1;value2 -
Invoice date filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Payment chart of accounts ID filter.
Multi-value supported. Example: value1;value2 -
Requested date filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Planned date filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Sent date filter.Supports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Invoice reference filter
-
Payable amount filterSupports 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 (
-
Contact ID filter (supplier or client, depending on module).
Multi-value supported. Example: value1;value2 -
Currency ID filter.
Multi-value supported. Example: value1;value2 -
Whether the payable has warnings
curl \
--request GET 'https://wyzio.app/api-v1/payable'
[
{
"organizationId": 42,
"module": "ALL",
"paymentId": 42,
"invoiceId": 42,
"invoiceDate": "2026-05-04T09:42:00Z",
"accountId": 42,
"requestedDate": "2026-05-04T09:42:00Z",
"plannedDate": "2026-05-04T09:42:00Z",
"minOfRequestedAndPlannedDate": "2026-05-04T09:42:00Z",
"sentDate": "2026-05-04T09:42:00Z",
"invoiceReference": "string",
"payableAmount": 42.0,
"comment": "string",
"warnings": "string",
"contact": "string",
"contactId": 42,
"currency": "string",
"currencyId": 42,
"documentFileId": 42,
"fileExtension": "string",
"hasWarnings": true,
"entityCreatorContactId": 42,
"paymentFileReference": "string",
"workflowPermissions": "string",
"tenantId": 42
}
]