Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the channel.
Body
application/json
Body
Response
200
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>"
}
}Update a channel.
Returns the updated channel object.
π§ Permissions
Please check you have the relevant permissions required to access this resource. This may include specific permissions on the object itself or its parent, or having the correct user role if youβre making updates.
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>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier of the channel.
Body
200
Show child attributes
Was this page helpful?