Account Colors are the colors available on a user's account that can be used to style workspaces.
Each project in Kantata OX can be tagged with a Project Color for categorization purposes. The colors that are available for projects are defined at the account level. Use the id of Account Color to read and update Project Colors using the workspaces endpoint.
This endpoint returns structured Account Color objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results
array
and will be indexed by ID in the account_colors
top-level JSON key.
Please see our Response Format section for more information.
{- "count": 0,
- "meta": {
- "count": 0,
- "page_count": 0,
- "page_number": 0,
- "page_size": 0
}, - "results": [
- {
- "key": "string",
- "id": "string"
}
], - "account_colors": {
- "property1": {
- "created_at": "2019-08-24T14:15:22Z",
- "default_color": true,
- "enabled": true,
- "hex": "string",
- "name": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "property2": {
- "created_at": "2019-08-24T14:15:22Z",
- "default_color": true,
- "enabled": true,
- "hex": "string",
- "name": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
}