Skip to main content
Skip table of contents

Assign Investigator

This command can only be executed in the "On Event Ingestion" trigger within an event playbook. Assign a specific investigator to an event.

Reader Note

Please note that this command is only applicable within an event Playbook.

Implementation

System

Command Category

System Utility

Tags

EVENT EVENT INVESTIGATION

Inputs

Parameter Name

Required/Optional

Description

Sample Data

User Name

Required

The name of investgator

user1

Output

Raw Data

The response data from the utility command.

SAMPLE DATA

JSON
{
    "result": "Successful",
    "errors": []
}

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/assignInvestigator

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": {
    "User Name": <Username 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.

User Name

Text

Required

The name of investgator

Sample Request

SAMPLE DATA

JSON
{
  "Username": "Admin",
  "Site": "Security Operations",
  "CommandParams": {
    "User Name": "user1"
  }
}

Response

Response Fields

Field Name

Type

Description

error

String

The error message if the API request has failed.

rawData

JSON Object

The raw data from the API request.

Sample Response

JSON
{
    "error": "",
    "returnData": "",
    "rawData": {
        "result": "Successful",
        "errors": []
    }
}
JavaScript errors detected

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

If this problem persists, please contact our support.