POST
/
v1
/
core
/
organizations
/
{orgId}
/
teams
curl --request POST \
  --url https://us-central1-siro-prod.cloudfunctions.net/api-externalApi/v1/core/organizations/{orgId}/teams \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "coachUids": [
    "<string>"
  ],
  "memberUids": [
    "<string>"
  ],
  "newUserDefaultConversationTypes": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "name": "<string>",
  "organizationId": "<string>",
  "coachUids": [
    "<string>"
  ],
  "coachManifest": {},
  "memberUids": [
    "<string>"
  ],
  "memberManifest": {},
  "newUserDefaultConversationTypes": [
    "<string>"
  ],
  "createdAt": "<string>"
}

Path Parameters

orgId
string
required

Organization ID

Body

application/json

Response

201 - application/json

Create a new team for an org

The response is of type object.