Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://dovetail.com/api/v1/highlights \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"note_id": "<string>",
"tags": [
{
"id": "<string>",
"title": "<string>"
}
],
"text": "<string>",
"type": "highlight",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"page": {
"total_count": 123,
"has_more": true,
"next_cursor": "<string>"
}
}Get a list of highlights associated with a workspace.
curl --request GET \
--url https://dovetail.com/api/v1/highlights \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"note_id": "<string>",
"tags": [
{
"id": "<string>",
"title": "<string>"
}
],
"text": "<string>",
"type": "highlight",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"page": {
"total_count": 123,
"has_more": true,
"next_cursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
See Pagination for details about how to use a cursor to iterate through the list.
Show child attributes
Was this page helpful?