PATCH
/
v1
/
channels
/
topic
/
{topic_id}
Patch topic
curl --request PATCH \
  --url https://dovetail.com/api/v1/channels/topic/{topic_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "My topic",
  "description": "My topic description"
}'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "description": "<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

topic_id
string
required

Unique identifier of the topic.

Body

application/json

Body

title
string

The topic's title.

Maximum length: 300
Example:

"My topic"

description
string

The topic's description.

Maximum length: 2500
Example:

"My topic description"

Response

200

data
object
required