GET
/
teams
/
{team_slug}
/
workspaces
curl --request GET \
  --url https://api.orgnise.in/teams/{team_slug}/workspaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "<string>",
    "name": "<string>",
    "description": "",
    "defaultAccess": "full",
    "meta": {
      "title": "<string>",
      "description": "<string>",
      "slug": "<string>"
    },
    "Visibility": "<any>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

team_slug
string
required

The slug of the team.

Response

200
application/json

A list of workspace

The response is of type workspace ยท object[].