curl --request GET \
--url https://api.example.com/projects/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"records_count": 123,
"total_reports_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"research_goals": "<string>",
"interview_guide": "<string>",
"owner_email": "<string>"
}
]Get all projects for the current user.
Returns:
curl --request GET \
--url https://api.example.com/projects/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"records_count": 123,
"total_reports_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"research_goals": "<string>",
"interview_guide": "<string>",
"owner_email": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?