DELETE
/
v1
/
insights
/
{insight_id}
Delete insight
curl --request DELETE \
  --url https://dovetail.com/api/v1/insights/{insight_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "type": "insight",
    "fields": [
      {
        "label": "<string>",
        "value": "<string>"
      }
    ],
    "created_at": "<string>",
    "deleted": true,
    "project": {
      "id": "<string>"
    },
    "files": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "<string>",
        "status": "completed",
        "author": {
          "id": "<string>",
          "name": "<string>"
        },
        "created_at": "<string>"
      }
    ],
    "published": true
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

insight_id
string
required

Unique identifier of the insight.

Response

200
application/json

200

The response is of type object.