GET
/
v1
/
notes
/
{note_id}
/
export
/
{type}
Export note
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>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

note_id
string
required

Unique identifier of the note.

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

Response

200
application/json

200

The response is of type object.