Skip to main content

Search Folder

Search Folder
GET

Search folders by folder name or description.

Request

GET /v1/folder/search

Query Parameters

ParameterTypeDescription
searchstringOptional. Text to search in folder name or description. Maximum 100 characters.
entitystringOptional. Filter by entity. Allowed values: candidate, contact, deal, job, organization.
sharedbooleanOptional. Filter by shared status.
sort_bystringOptional. Allowed values: name, created_at, updated_at. Default: updated_at.
sort_orderstringOptional. Allowed values: asc, desc. Default: desc.
pageintegerPage number. Default: 1.
limitintegerRecords per page. Default: 25. Requests above 50 are capped at 50.

Request Example

GET /v1/folder/search?search=Engineering&entity=candidate

Response

200
{
"total": 1,
"per_page": 25,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 1,
"data": [
{
"id": 42,
"entity": "candidate",
"name": "Engineering Candidates",
"description": "Shortlisted engineering candidates",
"shared": true,
"created_by": {
"id": 1
},
"updated_by": {
"id": 1
},
"created_at": "2026-07-24T10:15:00.000Z",
"updated_at": "2026-07-24T10:15:00.000Z"
}
]
}