Skip to main content
GET
/
platform
/
api
/
departments
GET Departments
curl --request GET \
  --url https://api.rippling.com/platform/api/departments \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Sales",
    "id": "62037ae4d482ff8219a73196",
    "parent": "5ec5595ffa9c4e1728118d6f"
  },
  {
    "name": "SMB",
    "id": "609069a5c8e8f044cf44e997",
    "parent": null
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Sets a limit on the returned values

offset
integer

Offsets the returned values

Response

200 - application/json
(Department · object | null)[]

OK

A company department object.

name
string

Name of the department

id
string

Unique identifier of the department

parent
string | null

id of the parent department, if one exists