Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Body
Response
201
curl --request POST \
--url https://dovetail.com/api/v1/channels/topic \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"description": "<string>",
"channel_id": "<string>"
}'{
"data": {
"id": "<string>",
"title": "<string>",
"description": "<string>",
"channel": {
"id": "<string>"
},
"created_at": "<string>"
}
}Create a topic with title and description in a specified channel.
Returns the topic object.
curl --request POST \
--url https://dovetail.com/api/v1/channels/topic \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"description": "<string>",
"channel_id": "<string>"
}'{
"data": {
"id": "<string>",
"title": "<string>",
"description": "<string>",
"channel": {
"id": "<string>"
},
"created_at": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
201
Show child attributes
Was this page helpful?