For the complete documentation index, see llms.txt. This page is also available as Markdown.

Task Creation

Create simple or recurring tasks

Create a task (simple or recurring)

post

Creates a task linked to a submission model (submission_model_id) or to a list of submissions (submissions). For a recurring task, add the recurrency object; in that case due_date is not required.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
app_shortstringRequired

Short name of the workspace instance (e.g. daxium-test)

Body

Body for creating a task. Provide either submission_model_id or submissions. Add recurrency for a recurring task (in which case due_date is optional).

start_dateinteger · int64Required

Task start date (UNIX timestamp)

due_dateinteger · int64Optional

Due date (UNIX timestamp). Optional for a recurring task.

submission_model_idstring · uuidOptional

Identifier of a submission model

submissionsstring · uuid[]Optional

List of submission identifiers

user_idinteger · nullableOptional

Identifier of the assigned user

durationintegerOptional

Task duration in seconds

delay_beforeintegerOptional

Indicative display delay in seconds before the task begins

delay_afterintegerOptional

Indicative display delay in seconds after the task's due time

Responses
200

Task created

application/json
idstring · uuidOptional
created_atinteger · int64Optional
updated_atinteger · int64Optional
start_dateinteger · int64Optional

Planned start date (Unix timestamp)

due_dateinteger · int64Optional

Due date (Unix timestamp)

durationintegerOptional

Expected duration in seconds

delay_beforeintegerOptional

Indicative display delay in seconds before the task begins

delay_afterintegerOptional

Indicative display delay in seconds after task completion time

user_idintegerOptional
post/{app_short}/tasks
200

Task created

Last updated

Was this helpful?