Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"author": {
"id": "<string>",
"name": "<string>"
},
"title": "<string>",
"type": "project",
"created_at": "<string>",
"deleted": true
}
],
"page": {
"total_count": 123,
"has_more": true,
"next_cursor": "<string>"
}
}Get a list of projects associated with a workspace.
curl --request GET \
--url https://dovetail.com/api/v1/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"author": {
"id": "<string>",
"name": "<string>"
},
"title": "<string>",
"type": "project",
"created_at": "<string>",
"deleted": 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?