A workspace represents a shared environment where team members collaborate on projects and tasks. Workspaces can contain multiple projects and are designed to facilitate organized and efficient teamwork.
Workspaces are identified by a UUID and are represented by the following fields in our public API:
{
"uuid": "", # The unique identifier of the item
"name": "", # The name of the workspace
"domain": "", # The domain of the workspace
"is_personal": false, # If it's a personal workspace
"access_level": "admin" # The access level. "admin" or "member"
}
Retrieves all workspaces the currently authenticated user belongs to
curl -H 'Authorization: Bearer TOKEN' <https://api.risecalendar.com/v1/workspaces>
{
"uuid": "c6c9b186-c42c-439a-8cdb-959e812d2de5",
"name": "Rise",
"domain": "risecalendar.com",
"is_personal": false
"access_level": "admin"
}