Teams
Create a team
Create a new team and optionally add the current user as a member.
post/teams
Request body
Example request
{
"display_name": "My Team",
"creator_user_id": "me",
"client_read_only_metadata": {
"key": "value"
},
"server_metadata": {
"key": "value"
},
"profile_image_url": "https://example.com/image.jpg",
"client_metadata": {
"key": "value"
}
}Response
Successful response
Example response
{
"created_at_millis": 1630000000000,
"server_metadata": {
"key": "value"
},
"id": "ad962777-8244-496a-b6a2-e0c6a449c79e",
"display_name": "My Team",
"profile_image_url": "https://example.com/image.jpg",
"client_metadata": {
"key": "value"
},
"client_read_only_metadata": {
"key": "value"
}
}