Create a project
Create a project. Creates a new project with the given attributes.
Required: name, project_manager_id, project_type_id, and workflow_id. company_id is required for non-internal project types.
{
"data": {
"type": "projects",
"attributes": {
"name": "Acme website redesign",
"project_type_id": 2,
"project_manager_id": 42,
"company_id": 999,
"workflow_id": 7
}
}
}
To duplicate an existing project or create one from a template, use /projects/copy instead.