GET
/
teams
curl --request GET \
  --url https://api.orgnise.in/teams \
  --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

Response

200
application/json

A list of team

The response is of type team · object[].