Append a subtask to an earlier task
append_subtaskAppend follow-up questions or checklist items to an already sent push task. The token from send_task determines whether one task or every instance in a group gets it; answers are collected individually.
Instructions
Add a follow-up question or checklist item to a task sent with send_task. Pass the append_token from that result: a task's token appends to that one task; a group's token appends to every instance of the group (narrow with instances). Subtasks take the same content, inputs and reply as send_task and are answered on their own; read them with get_task (the chain) or get_group_status. Never waits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| links | No | Public https URLs attached as links. | |
| reply | No | Open a comment thread on the subtask: `one-shot`, `sticky` or `one-time-per-user`. | |
| title | No | Short heading. Always set one: the chain and the overviews identify subtasks by title, not content. | |
| inputs | No | The inputs the recipient fills in, in display order. | |
| content | No | Body of the subtask. Required unless `inputs` is given. | |
| markdown | No | Render `content` as Markdown. | |
| instances | No | With a group token: only these instance task ids get the subtask. Omit for every instance. | |
| auto_commit | No | Default false: one Submit for all inputs. true: each input is submitted as filled. | |
| append_token | Yes | The append_token returned by send_task (task or group). |