teams
Retrieve a list of team
Retrieve a list of team for the authenticated user.
GET
/
teams
Copy
curl --request GET \
--url https://api.orgnise.in/teams \
--header 'Authorization: Bearer <token>'
Copy
[
{
"_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
Default authentication mechanism
Response
200
application/json
A list of team
The response is of type team · object[]
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.orgnise.in/teams \
--header 'Authorization: Bearer <token>'
Copy
[
{
"_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>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.