/departments
Description
Enables you to get all available departments for a company.
Request
GET https://api.smartrecruiters.com/v1/companies/{companyIdentifier}/departments
Path Parameters
Name | Type | Description |
---|---|---|
companyIdentifier | string | Lower case company name without spaces |
Query Parameters
n/a
Request Body
n/a
Response Body
ListResult containing list of Department objects
Example request
curl -i https://api.smartrecruiters.com/v1/companies/smartrecruiters/departments
Example response
{
"totalFound": 6,
"content": [
{
"id": 18554,
"label": "Marketing",
"description": null
},
{
"id": 18571,
"label": "Engineering",
"description": null
},
{
"id": 18588,
"label": "Product",
"description": null
},
{
"id": 18605,
"label": "Client Success",
"description": null
},
{
"id": 54016,
"label": "Sales",
"description": null
},
{
"id": 354474,
"label": "Finance & Admin",
"description": null
}
]
}
Updated over 2 years ago