Skip to main content

Get Folder

Get Folder
GET

Retrieve a folder by id.

Request

GET /v1/folder/{id}

Path Parameters

ParameterTypeRequiredDescription
idintegerYesFolder id.

Response

200
{
"id": 42,
"entity": "candidate",
"name": "Engineering Candidates",
"description": "Shortlisted engineering candidates",
"shared": true,
"created_by": {
"id": 1,
"email": "rohan@example.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null
},
"updated_by": {
"id": 1,
"email": "rohan@example.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null
},
"created_at": "2026-07-24T10:15:00.000Z",
"updated_at": "2026-07-24T10:15:00.000Z"
}
404
{
"message": "Folder not found"
}