Create task

POST/v1/tasks

Create a task that can later be assigned to an agent, grouped into a sprint or release, and started as a thread.

How to call this endpoint

Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.

Path, query, and header parameters

These parameters control which ACP object the endpoint acts on and how the request is processed.

Path parameters
None.
Query parameters
None.

Body schema

Content type: application/json · Required

FieldTypeRequiredDescription
titlestringYesDisplay title.
descriptionstringNoHuman-readable description.
projectIdstringNoProject ID.
releaseIdstringNo
statusbacklog | todo | in_progress | blocked | doneNoCurrent lifecycle status.
prioritylow | medium | high | urgentNo
sprintIdstringNo
assigneeAgentIdstringNo
dependencyIdsstring[]No
linkedThreadIdsstring[]No
lastStartedThreadIdstringNo
scheduledStartAtstringNo
scheduledEndAtstringNo
dueAtstringNo
completedAtstringNoISO 8601 timestamp.
sortOrdernumberNo
metadataobjectNoFree-form metadata object.

What the API returns

Each response code below includes the documented payload shape for the ACP API.

201Task createdapplication/json
FieldTypeRequiredDescription
taskobjectNo
task.idstringNoUnique identifier.
task.userIdstringNoUser ID.
task.projectIdstringNoProject ID.
task.releaseIdstringNo
task.titlestringNoDisplay title.
task.descriptionstringNoHuman-readable description.
task.statusbacklog | todo | in_progress | blocked | doneNoCurrent lifecycle status.
task.prioritylow | medium | high | urgentNo
task.sprintIdstringNo
task.assigneeAgentIdstringNo
task.dependencyIdsstring[]No
task.linkedThreadIdsstring[]No
task.lastStartedThreadIdstringNo
task.scheduledStartAtstringNo
task.scheduledEndAtstringNo
task.dueAtstringNo
task.completedAtstringNoISO 8601 timestamp.
task.sortOrdernumberNo
task.metadataobjectNoFree-form metadata object.
task.createdAtstringNoISO 8601 timestamp.
task.updatedAtstringNoISO 8601 timestamp.
Create task
Loading...
Response 201
Loading...
See the ACP quickstart and SDK flow