Asana · Schema
SectionTaskInsertRequest
CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| task | string | The task to add to this section. |
| insert_before | string | An existing task within this section before which the added task should be inserted. Cannot be provided together with insert_after. |
| insert_after | string | An existing task within this section after which the added task should be inserted. Cannot be provided together with insert_before. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SectionTaskInsertRequest",
"title": "SectionTaskInsertRequest",
"type": "object",
"properties": {
"task": {
"description": "The task to add to this section.",
"type": "string",
"example": "123456"
},
"insert_before": {
"description": "An existing task within this section before which the added task should be inserted. Cannot be provided together with insert_after.",
"type": "string",
"example": "86420"
},
"insert_after": {
"description": "An existing task within this section after which the added task should be inserted. Cannot be provided together with insert_before.",
"type": "string",
"example": "987654"
}
},
"required": [
"task"
]
}