Skip to main content
GET
/
v1
/
insights
/
{insight_id}
/
export
/
{type}
Export insight
curl --request GET \
  --url https://dovetail.com/api/v1/insights/{insight_id}/export/{type} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "insight",
    "title": "<string>",
    "created_at": "<string>",
    "deleted": true,
    "content_html": "<string>"
  }
}

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.

type
enum<string>
required
Available options:
html,
markdown

Response

200

data
object
required
  • Option 1
  • Option 2