Skip to main content
GET
/
platform
/
api
/
levels
GET Levels
curl --request GET \
  --url https://api.rippling.com/platform/api/levels \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Representative",
    "id": "5ee6c643bc3bc72b7f40e04a",
    "parent": null
  },
  {
    "name": "Executive",
    "id": "5ee6c649bc3bc72cfcb9d3b8",
    "parent": null
  },
  {
    "name": "Manager",
    "id": "5ee6c6bdbc3bc7293a217ffc",
    "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

OK

id
string

Unique identifier of the level.

name
string

Name of the level.

parent
string | null

The unique identifier of the parent level.