Skip to main content
GET
/
public
/
v1
/
employee-labels
List your employee labels
curl --request GET \
  --url https://app.stairoids.com/api/public/v1/employee-labels \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 42,
    "name": "Champion",
    "excludeFromScoring": false,
    "userGenerated": true
  }
]

Authorizations

X-Api-Key
string
header
required

Your organization's public API key.

Response

OK

id
integer<int64>

Label id.

Example:

42

name
string

Label name.

Example:

"Champion"

excludeFromScoring
boolean

Whether employees with this label are excluded from scoring.

Example:

false

userGenerated
boolean

Whether this label was user-created (vs system-generated).

Example:

true