organization.readpage and pageSize; see the query parameters below for defaults and limits. See Pagination & filtering for examples.curl --location 'https://api.cvviz.com/v1/hiring-managers?page=&pageSize=&search=&department_id=' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 22,
"name": "Hiring manager",
"email": "manager@example.com",
"departmentId": 12,
"departmentName": "Engineering"
}
],
"meta": {
"pagination": {
"page": 1,
"pageSize": 10,
"totalItems": 1,
"totalPages": 1
}
}
}