Skip to main content
POST
/
v1
/
orchestrate
/
agents
/
{agent_id}
/
environments
/
{environment_id}
/
channels
/
teams
Create Teams Channel
curl --request POST \
  --url https://{api_endpoint}/api/v1/orchestrate/agents/{agent_id}/environments/{environment_id}/channels/teams \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "app_password": "<string>",
  "app_id": "<string>",
  "name": "<string>",
  "channel_app_id": "<string>",
  "channel": "teams",
  "created_on": "<string>",
  "updated_at": "<string>",
  "created_by": "<string>",
  "updated_by": "<string>",
  "description": "<string>",
  "teams_tenant_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required
environment_id
string
required

Body

application/json
app_password
string
required
app_id
string
required
name
string | null
channel_app_id
string | null
channel
string
default:teams
Allowed value: "teams"
created_on
string | null
updated_at
string | null
created_by
string | null
updated_by
string | null
description
string | null
Maximum string length: 1024
teams_tenant_id
string | null

Response

Successful Response