Skip to main content
PATCH
/
chat
/
channels
/
{channelId}
Update channel settings
curl --request PATCH \
  --url https://api.engagefabric.com/chat/channels/{channelId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "maxMessageLength": 123,
  "rateLimit": 123,
  "slowModeSeconds": 123,
  "isReadOnly": true,
  "profanityFilterEnabled": true,
  "moderationLevel": "NONE",
  "retentionDays": 123,
  "metadata": {}
}
'

Path Parameters

channelId
string
required

Query Parameters

projectId
string
required

Body

application/json
name
string

Channel name

description
string

Channel description

maxMessageLength
number

Maximum message length

rateLimit
number

Rate limit (messages per minute)

slowModeSeconds
number

Slow mode seconds

isReadOnly
boolean

Read-only mode

profanityFilterEnabled
boolean

Enable profanity filter

moderationLevel
enum<string>

Moderation level

Available options:
NONE,
LIGHT,
STANDARD,
STRICT
retentionDays
number

Message retention in days

metadata
object

Additional metadata

Response

Channel updated