- Introduction
- Getting Started
- Permissions
- Core Resources
- Channels
- Messages
- Teams
- Roles
- Users
- Todos
- Direct Messages
- Applications
- Reactions
- Attachments
- Voice
- Webhooks
- Blog
- Category
- Schemas
- Websockets
- Example Bot
- WebSocket event envelope
- Websocket events
- CHANNEL_CREATED
- CHANNEL_DELETED
- CHANNEL_UPDATED
- MESSAGE_SEND
- MESSAGE_UPDATED
- MESSAGE_DELETED
- MESSAGE_REACTION_ADDED
- MESSAGE_REACTION_REMOVED
- PRESENCE_UPDATE
- TEAM_ROLE_CREATED
- TEAM_ROLE_DELETED
- TEAM_ROLES_UPDATED
- TEAM_UPDATED
- TODO_ITEM_CREATED
- TODO_ITEM_DELETED
- TODO_ITEM_UPDATED
- USER_JOINED_TEAM
- USER_LEFT_TEAM
- USER_JOINED_VOICE_CHANNEL
- USER_LEFT_VOICE_CHANNEL
- USER_PROFILE_UPDATED
- USER_ROLE_ADDED
- USER_ROLE_REMOVED
- USER_UPDATED_VOICE_METADATA
- BLOG_CREATED
- BLOG_DELETED
- CATEGORIES_PRIORITY_UPDATED
- CATEGORY_UPDATED
- CATEGORY_DELETED
- CATEGORY_CREATED
- CHANNELS_PRIORITY_UPDATED
- Connecting via WebSocket
Add a Channel To Category
POST
https://api.teamly.one/api/v1/teams/{teamId}/categories/{categoryId}/channels/{channelId}
Request
Path Params
teamId
string
required
categoryId
string
required
channelId
string
required
Header Params
Authorization
string
required
Default:
Bot {token}
Content-Type
string
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.teamly.one/api/v1/teams//categories//channels/' \
--header 'Authorization;'
Responses
🟢200Success
application/json
Body
success
boolean
required
channel
object (Channel)
required
id
string
required
type
string
required
teamId
string
required
name
string
required
>= 1 characters<= 20 characters
description
string | null
optional
null
if no description is providedcreatedBy
string
required
parentId
string | null
optional
null
if not applicableparticipants
array[string] | null
optional
priority
number
required
nsfw
boolean
required
region
string | null
optional
createdAt
string <date-time>
required
permissions
object
required
additionalData
object | null
optional
Example
{
"success": true,
"channel": {
"id": "string",
"type": "string",
"teamId": "string",
"name": "string",
"description": "string",
"createdBy": "string",
"parentId": "string",
"participants": [
"string"
],
"priority": 0,
"nsfw": true,
"region": "string",
"createdAt": "2019-08-24T14:15:22Z",
"permissions": {
"role": {
"roleId": "string",
"allow": 0,
"deny": 0
}
},
"additionalData": {
"streamChannel": "string",
"streamPlatform": "string"
}
}
}
Modified at 2025-01-27 21:34:42