---
title: "Search Expense Reviews"
method: GET
path: "/business/v2/expense-review"
tags: ["Expense Reviews"]
---

# Search Expense Reviews

`GET /business/v2/expense-review`

Endpoint to find users with `ExpenseReview` using filtering parameters.

## Query parameters

- `delegatedBy` string[] — Filters expenses by the user who delegated them.
- `fromDate` string, date-time
- `toDate` string, date-time
- `text` string — A text to search in the expenses reviewer name or surname.
- `p` integer — It indicates the specific page to display (the counter starts from zero).
- `s` integer — It indicates the number of items per page.
- `props` string[] — 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.

## Response `200`

The returned resource is an array of `Expenses`.

- Expenses
  - `total` integer — It represents the total number of available items in the list.
  - `pages` integer — It represents the total number of available pages.
  - `page_size` integer — It represents the number of items per page.
  - `current_page` integer — It indicates the current page (the counter starts from zero).
  - `results_size` integer — It indicates the size of the array results.
  - `results` Expense[]
    - `user_id` string — The ID of the `User` (sortable: no).
    - `user_name` string — The name of the `User` (sortable: yes).
    - `user_surname` string — The surname of the `User` (sortable: yes).
    - `job_title` string — The job title of the `User` (sortable: yes).
    - `to_review_transaction` integer — The number of the `Transaction` items in status `TO_REVIEW` (sortable: no).
    - `reviewed_transaction` integer — The number of the `Transaction` items in status `REVIEWED` (sortable: no).
    - `exported_transaction` integer — The number of the `Transaction` items in status `EXPORTED` (sortable: no).
    - `total_transaction` integer — The number of `Transaction` items (sortable: no).

---

[API](https://skmtc.net/soldo/apis/soldo-business-api-v2-0.md) · [All operations](https://skmtc.net/soldo/apis/soldo-business-api-v2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/soldo/soldo-business-api-v2-0/revisions/7be21448a2b3/schema)
