Returns aggregated purchase invoice scan totals 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
-
Scan ID filter.
Multi-value supported. Example: value1;value2 -
Organization name filter
-
Scan 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 (
-
Supplier name filter
-
Currency code filter
-
Total 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 (
-
Scan processing status filter
Values are
NEW,PROCESS,CONVERT, orRECOGNIZING. -
Whether the scan has warnings
GET
/api-v1/purchase-invoice-scan/total
curl \
--request GET 'https://wyzio.app/api-v1/purchase-invoice-scan/total'
Response examples (200)
{
"id": 42,
"organizationName": "string",
"organizationId": 42,
"date": "2026-05-04T09:42:00Z",
"supplier": "string",
"currency": "string",
"totalAmount": 42.0,
"status": "NEW",
"isOrganizationNameIncluded": true,
"isTreatedByManagingOrganization": true,
"fileId": 42,
"warnings": "string",
"hasWarnings": true,
"comment": "string"
}