Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
See Pagination for details about how to use a cursor to iterate through the list.
curl --request GET \
--url https://dovetail.com/api/v1/insights/user/{user_id} \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"title": "<string>",
"type": "insight",
"created_at": "<string>",
"published": true
}
],
"page": {
"total_count": 123,
"has_more": true,
"next_cursor": "<string>"
}
}Get a list of insights associated with a user.
curl --request GET \
--url https://dovetail.com/api/v1/insights/user/{user_id} \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"title": "<string>",
"type": "insight",
"created_at": "<string>",
"published": true
}
],
"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?