Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
internal_channels
Create internal channel
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/internal_channels \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "channel_type": "public",
  "member_ids": [
    123
  ]
}
'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "member_ids": [
    123
  ],
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

All API requests must include the api_access_token header with a valid agent or administrator token.

Body

application/json
name
string
required
description
string
channel_type
enum<string>
default:public
Available options:
public,
private,
direct
member_ids
integer[]

Response

Channel created

id
integer
name
string
description
string
channel_type
enum<string>
Available options:
public,
private,
direct
member_ids
integer[]
created_at
string<date-time>