Sign in

Modify channel

documented

Update a channel's settings; returns the updated channel object.

PATCH /channels/{channel.id}Channelsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://discord.com/api/v10/channels/{{$channel_id}}" \
  -X PATCH \
  -H "Authorization: Bot {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "topic": "{{$topic}}", "nsfw": {{$nsfw}}, "rate_limit_per_user": {{$rate_limit_per_user}}}'
Modify channel · Discord · OpenIntegrations