curl --request PATCH \
--url http://localhost:3000/api/messaging/central-channels/{channelId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"metadata": {}
}'
{
"success": true
}
Update channel details
curl --request PATCH \
--url http://localhost:3000/api/messaging/central-channels/{channelId} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"metadata": {}
}'
{
"success": true
}
Channel updated successfully
The response is of type object
.
Was this page helpful?