cURL
curl --request POST \ --url https://dovetail.com/api/v1/channels \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "title": "<string>", "content_type": "APP_REVIEW", "project_category_id": "<string>" }'
{ "data": { "id": "<string>", "title": "<string>", "project_category": { "id": "<string>" }, "created_at": "<string>", "topics": [ { "id": "<string>", "title": "<string>", "description": "<string>" } ] } }
Create a channel with title in a specified folder.
Returns the channel object.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Body
The body is of type object.
object
201
The response is of type object.
Was this page helpful?