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

title
string
required

The channel's title.

Required string length: 1 - 200
content_type
enum<string>
required

The channel's content type. Possible values: [APP_REVIEW, CHURN_REASONS, NPS_FEEDBACK, PRODUCT_REVIEW, SUPPORT_TICKETS]

Available options:
APP_REVIEW,
CHURN_REASONS,
NPS_FEEDBACK,
PRODUCT_REVIEW,
SUPPORT_TICKETS
project_category_id
string

Unique identifier of the folder you want to save this channel.

Response

201

data
object
required