Skip to content

Create Continuous Project

POST
/api/continuous/projects
curl --request POST \
--url https://example.com/api/continuous/projects \
--header 'Content-Type: application/json' \
--data '{ "deadline": 1767225599, "name": "Marketing Campaign", "workflow_key": "translation" }'

Create new continuous project.

Creates a project with continuous=True and links current user as project manager.

Request Body: { “name”: “My Continuous Project”, “deadline”: 1767225599, “workflow_key”: “translation” }

Response: { “project_id”: “abc-123-def”, “name”: “My Continuous Project”, “continuous”: true, “create_time”: “2025-01-15T10:30:00” }

Errors: 400: Invalid input (missing name, invalid workflow) 401: Not authenticated 500: Creation failed

Media typeapplication/json
CreateProjectRequest

Request to create continuous project.

object
name
required
Name

Project name

string
>= 1 characters
deadline
Any of:
integer
workflow_key
Any of:
string
workflow_id
Any of:
integer

Successful Response

Media typeapplication/json
ProjectResponse

Response for project operations.

object
project_id
required
Project Id

External project ID (UUID)

string
name
required
Name

Project name

string
continuous
required
Continuous

Whether project is continuous

boolean
create_time
required
Create Time

Creation timestamp (ISO format)

string
workflow_id
Any of:
integer
workflow_key
Any of:
string
workflow_mode
Any of:
string
Example
{
"continuous": true,
"create_time": "2025-10-02T12:00:00",
"name": "Marketing Campaign",
"project_id": "abc123-def456",
"workflow_id": 1,
"workflow_key": "translation",
"workflow_mode": "per_row"
}

Validation error

Unauthorized

Forbidden

Not found

Conflict

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}

Internal server error