curl --request POST \
--url https://api.example.com/projects/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"research_goals": "<string>",
"interview_guide": "<string>"
}
'{
"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>"
}Create a new project.
Parameters:
Returns:
Note: Files should be uploaded separately using the existing upload API and linked to the project via project_id parameter.
curl --request POST \
--url https://api.example.com/projects/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"research_goals": "<string>",
"interview_guide": "<string>"
}
'{
"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.
Was this page helpful?