curl --request POST \
--url https://cloud.kaneo.app/api/auth/organization/create-team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"organizationId": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Create a new team within an organization
curl --request POST \
--url https://cloud.kaneo.app/api/auth/organization/create-team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"organizationId": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Bearer token authentication
Team created successfully
Unique identifier of the created team
Name of the team
ID of the organization the team belongs to
Timestamp when the team was created
Timestamp when the team was last updated
Was this page helpful?