Skip to main content
Skip table of contents

Set Incident Field HTML

Adds a description/note/conclusion in HTML format to the current incident.

Implementation

System

Command Category

System Utility

Tags

INCIDENT INCIDENT FIELDS

Inputs

Parameter Name

Required/Optional

Description

Sample Data

Incident Number

Optional

The incident number to set the fields to.

20230405-12

Field Name

Required

The field that would be set in the incident.

Note

HTML Content

Optional

Content in HTML String.

<table class="cc-table horizontal-table"><tr><td>192.168.1.242</td><td>Low</td></tr><tr><td>192.168.1.243</td><td>High</td></tr></table>

Output

Return Data

The returned result of this command. If some required parameters are not defined, this returned data could be empty. The returned result can be passed down directly to a subsequent command in playbooks.

SAMPLE DATA

JSON
Successful
Context Data

The response data from the utility command.

SAMPLE DATA

JSON
{
    "IncidentNumber": "TEST-INCIDENT-51",
    "ModifiedDate": "6/17/2021 1:30:35 PM",
    "Notes": "Test incident notes",
    "Result": "Succeed",
    "ModifiedBy": "D3 admin"
}

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

CODE
https:/{base_url}/{api_namespace}/api/Command/SetIncidentFieldHTML

Headers

Please refer to the page Webhook Configuration Guide - Authentication Method: API Keys for more details.

Request Body

JSON
{
  "Username": "<Username here>",
  "Site": "<Site here>",
  "CommandParams": {
    "Incident Number": "<Incident Number here>",
    "Field Name": "<Field Name here>",
    "HTML Content": "<HTML Content here>"
  }
}

Body Parameters

Parameter Name

Type

Required/Optional

Description

Username

String

Required

The username of your D3 SOAR account.

Site

String

Required

The D3 SOAR site to run the remote command.

Incident Number

Text

Optional

The incident number to set the fields to.

Field Name

Text

Required

The field that would be set in the incident.

HTML Content

Text

Optional

Content in HTML String.

Sample Request

SAMPLE DATA

JSON
{
  "Username": "Admin",
  "Site": "Security Operations",
  "CommandParams": {
    "Incident Number": "20230405-12",
    "Field Name": "Note",
    "HTML Content": "
      192.168.1.242	Low
      192.168.1.243	High
      "
  }
}

Response

Response Fields

Field Name

Type

Description

error

Text

The error message if the API request has failed.

returnData

Text

The return data from the API request.

contextData

JSON Object

The context data from the API request.

Sample Response

JSON
{
    "error": "",
    "returnData": "Successful",
    "contextData": {
        "IncidentNumber": "TEST-INCIDENT-51",
        "ModifiedDate": "6/17/2021 1:30:35 PM",
        "Notes": "Test incident notes",
        "Result": "Succeed",
        "ModifiedBy": "D3 admin"
    }
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.