nowcerts_task_insert
Add new tasks to the NowCerts system by providing task data to manage workflow and assignments.
Instructions
Insert a new task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Task data |
Input Schema (JSON Schema)
{
"properties": {
"task": {
"description": "Task data",
"required": true,
"type": "object"
}
},
"required": [
"task"
],
"type": "object"
}