PlaybookRuns
Add an item to a playbook run's checklist
The most common pattern to add a new item is to only send its title as the request payload. By default, it is an open item, with no assignee and no slash command.
post/plugins/playbooks/api/v0/runs/{id}/checklists/{checklist}/add
Path parameters
idstring required
ID of the playbook run whose checklist will be modified.
checklistinteger required
Zero-based index of the checklist to modify.
Request body
Example request
{
"title": "Gather information from customer.",
"state": "closed",
"state_modified": 1607774621321,
"assignee_id": "pisdatkjtdlkdhht2v4inxuzx1",
"assignee_modified": 1608897821125,
"command": "/opsgenie on-call",
"command_last_run": 1608552221019,
"description": "Ask the customer for more information in [Zendesk](https://www.zendesk.com/)."
}Response
Item successfully added.