Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the insight.
Available options: 
html, markdown Response
200
- Option 1
- Option 2
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>"
  }
}Export an insight in HTML or Markdown format.
Returns the insight object with the requested export content.
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>"
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier of the insight.
html, markdown 200
Show child attributes
Was this page helpful?