POST
/
v1
/
channels
/
data
Create data point
curl --request POST \
  --url https://dovetail.com/api/v1/channels/data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "Support email requesting a trial for Dovetail app.",
  "channel_id": "<string>",
  "timestamp": "<string>",
  "source_title": "<string>",
  "source_url": "<string>",
  "metadata": {}
}'
{
  "data": {
    "id": "<string>",
    "channel": {
      "id": "<string>"
    },
    "timestamp": "<string>",
    "created_at": "<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.