Create Continuous Project
POST
/api/continuous/projects
const url = 'https://example.com/api/continuous/projects';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"deadline":1767225599,"name":"Marketing Campaign","workflow_key":"translation"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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
Request Bodyrequired
Section titled “Request Bodyrequired”Responses
Section titled “Responses”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
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>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}Internal server error