POST
/
v1
/
channels
Create channel
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>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Body

The body is of type object.

Response

201
application/json

201

The response is of type object.