Projects
Create a new project (use case)
Creates a new project with associated members and frameworks. If an approval_workflow_id is provided, framework creation is deferred until the approval request is approved.
post/projects
Request body
Example request
{
"project_title": "Customer Support Chatbot",
"owner": 1,
"start_date": "2026-01-15T00:00:00.000Z",
"geography": 1,
"goal": "Automate tier-1 support queries",
"target_industry": "Financial Services",
"description": "An LLM-powered chatbot for handling customer inquiries",
"members": [
2,
3,
5
],
"framework": [
1,
2
]
}Response
Project created successfully
Example response
{
"message": "Created",
"data": {
"project": {
"id": 42,
"uc_id": "UC-7",
"project_title": "Customer Support Chatbot",
"owner": 1,
"geography": 1,
"framework": [
{
"name": "EU AI Act"
}
]
}
}
}