GET
/api-v1/expenses
curl \
--request GET 'https://wyzio.app/api-v1/expenses' \
--header "WEAL-TOKEN: string" \
--header "TARGET-ORGANIZATION-ID: 42"
Response examples (200)
[
{
"id": 42,
"date": "2026-05-04T09:42:00Z",
"merchant": "string",
"description": "string",
"reBill": true,
"currency": "string",
"currencyNetAmount": 42.0,
"currencyVatAmount": 42.0,
"currencyTotalAmount": 42.0,
"companyCurrencyTotalAmount": 42.0,
"status": "UNSUBMITTED",
"receipt": true,
"organizationId": 42,
"employeeId": 42,
"employeeName": "string"
}
]