Skip to main content
GET
/
statuses
/
colors
List available colors
curl --request GET \
  --url https://inboxapp.com/api/v1/statuses/colors \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "hex": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

name
string
required

The name of the color that can be used in API requests.

Examples:

"red"

"blue"

"green"

hex
string
required

The hex code representation of the color.

Examples:

"#ef4444"

"#3b82f6"

"#22c55e"