Agents
Audio
Messaging
- POSTCreate server
- POSTCreate channel
- POSTCreate central channel
- POSTCreate group channel
- GETGet or create DM channel
- POSTSend message to channel
- GETGet channel messages
- GETGet channel details
- GETGet channel info
- GETGet channel participants
- PATCHUpdate channel
- DELDelete channel
- DELDelete channel message
- DELDelete all channel messages
- DELDelete all channel messages by user
- POSTAdd agent to server
- POSTAdd agent to channel
- DELRemove agent from server
- GETGet server agents
- GETGet server channels
- GETGet central servers
- GETGet central server channels
- POSTProcess external message
- POSTIngest messages from external platforms
- POSTSubmit a message to the central messaging system
- POSTMark message processing as complete
Memory
Logs
System
WebSocket
Messaging
Update channel
Update channel details
PATCH
/
api
/
messaging
/
central-channels
/
{channelId}
Update channel
Copy
Ask AI
curl --request PATCH \
--url http://localhost:3000/api/messaging/central-channels/{channelId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"metadata": {}
}'
Copy
Ask AI
{
"success": true
}
Path Parameters
Body
application/json
Response
200
application/json
Channel updated successfully
The response is of type object
.
Was this page helpful?
Update channel
Copy
Ask AI
curl --request PATCH \
--url http://localhost:3000/api/messaging/central-channels/{channelId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"metadata": {}
}'
Copy
Ask AI
{
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.