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. -
Order ID filter.
Multi-value supported. Example: value1;value2 -
Order name filter
-
Internal order number / code filter
-
Order date filterSupports 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 (
-
Order description filter
-
Client contact ID filter.
Multi-value supported. Example: value1;value2 -
Order status filter
Values are
OFFERED,OFFERED_SENT,CONFIRMED,CONFIRMED_SENT,BILLABLE,FINISHED, orCANCELLED. -
Whether expenses are enabled for the order
-
Order 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 (
-
Whether the order has warnings
-
Whether the order is validated
-
Client email filter
-
Whether the order is currently generating an invoice
-
Whether the order is periodic (recurring)
-
Whether the order is currently part of an active workflow
-
Order email address filter
-
Whether the order has a proforma invoice
curl \
--request GET 'https://wyzio.app/api-v1/orders'
[
{
"id": 42,
"name": "string",
"orderId": "string",
"date": "2026-05-04T09:42:00Z",
"description": "string",
"contactName": "string",
"contactId": 42,
"organizationId": 42,
"warnings": "string",
"status": "OFFERED",
"isExpensesEnabled": true,
"isPrePaymentAvailable": true,
"isPartialPaymentAvailable": true,
"orderAmount": 42.0,
"creatorContactId": 42,
"hasWarnings": true,
"validated": true,
"clientEmail": "string",
"clientECorrespondence": true,
"workflowPermissions": "string",
"isInvoiceGenerated": true,
"isPeriodic": true,
"isInWorkflow": true,
"flagsAmount": 42,
"activeSubOrderId": 42,
"activeSubOrderInvoicingDate": "2026-05-04T09:42:00Z",
"systemValidated": true,
"clientOrderEmail": "string",
"clientAdvancedInvoicingNote": "string",
"hasProformaInvoice": true,
"orderIdNameConcat": "string",
"periodic": true,
"inWorkflow": true,
"expensesEnabled": true,
"prePaymentAvailable": true,
"partialPaymentAvailable": true,
"invoiceGenerated": true
}
]