Skip to main content
GET
/
public
/
v1
/
labels
List labels
curl --request GET \
  --url http://app.stairoids.com/api/public/v1/labels \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 5,
    "name": "Strategic",
    "color": "#73d89c",
    "userGenerated": true
  }
]

Authorizations

X-Api-Key
string
header
required

Your organization's public API key. Manage it at GET /api/user/public-api-key.

Response

OK

id
integer<int64>

Label id.

Example:

5

name
string

Label name.

Example:

"Strategic"

color
string

Hex color.

Example:

"#73d89c"

userGenerated
boolean

True if user-created, false if system-generated.

Example:

true