A team resource represents a team registered in the Rise application.

Teams are identified by a UUID and are represented by the following fields in our public API:

{
  "uuid": "",              # The unique identifier of the team
  "workspace_uuid": "",    # The workspace the team belongs to
  "name": ""               # The name of the team
}

GET /teams

Retrieves the teams for the currently authenticated user

curl -H 'Authorization: Bearer TOKEN' <https://api.risecalendar.com/v1/teams>

Response

[
	{
	  "uuid": "900cf338-8b18-481c-845b-603b407b25ff",
	  "workspace_uuid": "54dd7b65-a677-46df-9299-8e7fcfdeebb9",
	  "name": "Backend"
	},
	...
]