teams
Create a team
Create a new team for the authenticated user.
POST
/
teams
Copy
curl --request POST \
--url https://api.orgnise.in/teams \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"slug": "<string>",
"description": "<string>"
}'
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
Body
application/json
Response
200
application/json
The created team
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.orgnise.in/teams \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"slug": "<string>",
"description": "<string>"
}'
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.