Get Incident Pending Tasks
LAST UPDATED: SEPT 10, 2024
Retrieves the pending tasks across all incident playbook executions associated with an incident.
Implementation | System |
Command Category | System Utility |
Tags | INCIDENT INCIDENT TASK |
Inputs
Parameter Name | Required/Optional | Description | Sample Data |
---|---|---|---|
Incident Number | Optional | The incident number corresponding to an incident used to retrieve pending tasks. | 20211216-10 |
Output
Remote Command API
The D3 command API allows you to send requests to D3 SOAR to execute this utility command via REST API.
Request
POST
https:/{base_url}/{api_namespace}/api/Command/GetIncidentPendingTasks
Headers
Please refer to the page Webhook Configuration Guide - Authentication Method: API Keys for more details.
Request Body
{
"Username": <Username here>,
"Site": <Site here>,
"CommandParams": {
"Incident Number": <Incident Number here>
}
}
Body Parameters
Parameter Name | Type | Required/Optional | Description |
---|---|---|---|
Username |
| Required | The username of your D3 SOAR account. |
Site |
| Required | The D3 SOAR site to run the remote command. |
Incident Number |
| Optional | The incident number corresponding to an incident used to retrieve pending tasks. |
Sample Request
SAMPLE DATA
{
"Username": "Admin",
"Site": "Security Operations",
"CommandParams": {
"Incident Number": "20211216-10"
}
}
Response
Response Fields
Field Name | Type | Description |
---|---|---|
error |
| The error message if the API request has failed. |
returnData |
| The return data from the API request. |
contextData |
| The context data from the API request. |
Sample Response
{
"error": "",
"returnData": "Successful",
"rawData": "",
"contextData": [
{
"Task Name": "link artifact",
"Task Status": "Suggested",
"Task Assignee": "admin (Group)",
"Task Due Date": "09/29/2021 05:36 PM PST"
},
{
"Task Name": "assign to other incident",
"Task Status": "Suggested",
"Task Assignee": "Investigator (Investigation Team)",
"Task Due Date": "09/29/2021 05:36 PM PST"
},
{
"Task Name": "New Command Task 1",
"Task Status": "Suggested",
"Task Assignee": "Administrators (Group)",
"Task Due Date": "09/29/2021 05:36 PM PST"
}
]
}