Search Expense Reviews
Endpoint to find users with ExpenseReview using filtering parameters.
Query parameters
Filters expenses by the user who delegated them.
[ "XMPL1234-000001" ]
The beginning of the period of the search fromDate included (i.e. greater than or equal to) (Formats: yyyy-MM-dd, yyyy-MM-ddThh:mm:ss, yyyy-MM-ddThh:mm:ssZ).
The end of the period of the search toDate included (i.e. less than) (Formats: yyyy-MM-dd, yyyy-MM-ddThh:mm:ss, yyyy-MM-ddThh:mm:ssZ).
A text to search in the expenses reviewer name or surname.
A text to search in the expenses reviewer name or surname.
It indicates the specific page to display (the counter starts from zero).
It indicates the specific page to display (the counter starts from zero).
It indicates the number of items per page.
It indicates the number of items per page.
It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the props parameter in the request.
It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the props parameter in the request.
[ "creationTime" ]
Response
The returned resource is an array of Expenses.
Example response
{
"total": 168,
"pages": 7,
"page_size": 25,
"results_size": 25,
"results": [
{
"user_id": "XMPL1234-000001",
"user_name": "JOHN",
"user_surname": "DOE",
"job_title": "CTO",
"to_review_transaction": 1,
"reviewed_transaction": 2,
"exported_transaction": 1,
"total_transaction": 3
}
]
}