Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the note.
Available options:
html, markdown Response
200
- Option 1
- Option 2
curl --request GET \
--url https://dovetail.com/api/v1/notes/{note_id}/export/{type} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "note",
"title": "<string>",
"created_at": "<string>",
"deleted": true,
"content_html": "<string>"
}
}Export a note in HTML or Markdown format.
Returns the note object with the requested export content.
curl --request GET \
--url https://dovetail.com/api/v1/notes/{note_id}/export/{type} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "note",
"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 note.
html, markdown 200
Show child attributes
Was this page helpful?