GET
/
teams
/
{team_slug}
curl --request GET \
  --url https://api.orgnise.in/teams/{team_slug} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "<string>",
  "name": "<string>",
  "logo": null,
  "description": "<string>",
  "role": "<any>",
  "membersCount": 123,
  "meta": {
    "title": "<string>",
    "description": "<string>",
    "slug": "<string>"
  },
  "inviteCode": "<string>",
  "plan": "free",
  "billingCycleStart": 123,
  "usage": {
    "pages": 0,
    "users": 0,
    "workspaces": 0
  },
  "limit": {
    "pages": 0,
    "users": 0,
    "workspaces": 0
  },
  "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

The retrieved team

The response is of type object.