Core
- Mobile Events
- OAuth Apps and Tokens
- Org-Scoped Tokens
- Integration Connections
- Organizations
- Recordings
- Teams
- Users
Integrations
- Integrations intro
- Accounts
- Opportunities
- Engagements
Introspection
Audit logs
Teams
Create a new team for an org
Create a new team for an org
POST
/
v1
/
core
/
organizations
/
{orgId}
/
teams
Copy
Ask AI
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>"
]
}'
Copy
Ask AI
{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"coachUids": [
"<string>"
],
"coachManifest": {},
"memberUids": [
"<string>"
],
"memberManifest": {},
"newUserDefaultConversationTypes": [
"<string>"
],
"createdAt": "<string>"
}
Path Parameters
Organization ID
Body
application/json
Response
201 - application/json
Create a new team for an org
The response is of type object
.
Copy
Ask AI
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>"
]
}'
Copy
Ask AI
{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>",
"coachUids": [
"<string>"
],
"coachManifest": {},
"memberUids": [
"<string>"
],
"memberManifest": {},
"newUserDefaultConversationTypes": [
"<string>"
],
"createdAt": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.