An analyst wants to pause a running playbook until an external system responds via a webhook integration. Which playbook task type should be utilized?
Trap 1: Wait for Analyst Review Task
Incorrect. This task pauses for human intervention, not automated webhooks.
Trap 2: Data Collection Task
Incorrect. Data collection gathers information immediately rather than pausing for an asynchronous external event.
Trap 3: Transformation Task
Incorrect. Transformation tasks process data and do not pause execution.
- A
Wait for Analyst Review Task
Why wrong: Incorrect. This task pauses for human intervention, not automated webhooks.
- B
Pend Task / Wait for Webhook Task
Correct. Pending tasks allow the playbook to halt execution safely until an external webhook callback resumes it.
- C
Data Collection Task
Why wrong: Incorrect. Data collection gathers information immediately rather than pausing for an asynchronous external event.
- D
Transformation Task
Why wrong: Incorrect. Transformation tasks process data and do not pause execution.