cURL
curl --request GET \ --url https://inboxapp.com/api/v1/statuses/colors \ --header 'Authorization: Bearer <token>'
[ { "name": "<string>", "hex": "<string>" } ]
Get a list of predefined colors that can be used when creating or updating statuses
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK
The name of the color that can be used in API requests.
"red"
"blue"
"green"
The hex code representation of the color.
"#ef4444"
"#3b82f6"
"#22c55e"
Was this page helpful?