# Lookup staff types (paged)

**Lookup staff types page by page**
Returns a page of staff types ordered by id ascending.
Notes:
- `pageSize` must be between **1** and **100**
- `page` is zero-based (`page` 0 is the first page)
**Real Example:**

```bash
curl --location 'https://{{host}}/api/v1/staff/type/batch/lookup' \
--header 'Authorization: bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{ "pageSize": 25, "page": 0 }'
```

Endpoint: POST /api/v1/staff/type/batch/lookup
Version: 1.0.0
Security: BearerAuth

## Request fields (application/json):

  - `pageSize` (integer)
    Pagesize

  - `page` (integer)
    Page

