Skip to main content
GET
/
api
/
admin
/
security
/
threats
/
{incidentId}
/
history
Get the live flagged history records cited by a Praxis Shield incident
curl --request GET \
  --url https://pria.praxislxp.com/api/admin/security/threats/{incidentId}/history \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "incidentId": "<string>",
  "histories": [
    {
      "_id": "<string>",
      "input": "<string>",
      "output": "<string>",
      "tools": "<unknown>",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "type": "<string>",
      "userEmail": "<string>",
      "user": "<string>"
    }
  ]
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Path Parameters

incidentId
string
required

Response

The cited history records (possibly empty)

success
boolean
incidentId
string
histories
object[]