Get History of a Threat ID

GET {{cb_url}}/api/alerts/v7/orgs/{{cb_org_key}}/threats/{{cb_threat_id}}/history

Get the history, including notes, of a threat.

RBAC Permissions Required

Permission (.notation name)Operation(s)
org.alerts.notesREAD

See Documentation

Response Schema

{
  "history": [
    {
      "type": "MDR_WORKFLOW_UPDATE",
      "note": {
        "author": "<string>",
        "create_timestamp": "<dateTime>",
        "last_update_timestamp": "<dateTime>",
        "id": "<string>",
        "source": "Suppression",
        "note": "<string>",
        "parent_id": "<string>",
        "read_history": {
          "amet_3ae": "<dateTime>",
          "ex_0_7": "<dateTime>"
        }
      },
      "workflow": {
        "change_timestamp": "<dateTime>"
      },
      "determination": {
        "change_timestamp": "<dateTime>"
      }
    },
    {
      "type": "MDR_WORKFLOW_UPDATE",
      "note": {
        "author": "<string>",
        "create_timestamp": "<dateTime>",
        "last_update_timestamp": "<dateTime>",
        "id": "<string>",
        "source": "Customer",
        "note": "<string>",
        "parent_id": "<string>",
        "read_history": {
          "id04": "<dateTime>",
          "Ut_c": "<dateTime>"
        }
      },
      "workflow": {
        "change_timestamp": "<dateTime>"
      },
      "determination": {
        "change_timestamp": "<dateTime>"
      }
    }
  ]
}

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;history&quot;:[{&quot;type&quot;:&quot;THREAT_NOTE_ADDED&quot;,&quot;note&quot;:{&quot;author&quot;:&quot;demouser@demoorg.com&quot;,&quot;create_timestamp&quot;:&quot;2023-04-18T03:20:59.426Z&quot;,&quot;last_update_timestamp&quot;:&quot;2023-04-18T03:20:59.426Z&quot;,&quot;id&quot;:&quot;372ab282-7733-48fd-b26c-d58508b8c88f&quot;,&quot;source&quot;:&quot;CUSTOMER&quot;,&quot;note&quot;:&quot;A note on the threat&quot;,&quot;parent_id&quot;:null,&quot;read_history&quot;:null,&quot;thread&quot;:null}}]}