PATCH
/
v1
/
channels
/
{channel_id}
Patch channel
curl --request PATCH \
  --url https://dovetail.com/api/v1/channels/{channel_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "My channel",
  "context": "Understanding customer feedback and improving product features"
}'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

channel_id
string
required

Unique identifier of the channel.

Body

application/json

Body

title
string
required

The channel's title.

Maximum length: 200
Example:

"My channel"

context
string

The channel's context, used to set the channel's main goal or purpose.

Maximum length: 10000
Example:

"Understanding customer feedback and improving product features"

Response

200

data
object
required