Add a reviewer note to a Praxis Shield incident
curl --request POST \
--url https://pria.praxislxp.com/api/admin/security/threats/{incidentId}/notes \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"note": "<string>"
}
'{
"success": true,
"incident": {
"_id": "<string>",
"severity": 2,
"categories": [
"<string>"
],
"title": "<string>",
"summary": "<string>",
"user": "<string>",
"userEmail": "<string>",
"userFname": "<string>",
"userLname": "<string>",
"institutionIds": [
"<string>"
],
"institutions": [
{
"_id": "<string>",
"name": "<string>"
}
],
"evidence": [
{}
],
"llmAssessments": [
{}
],
"reviewerNotes": [
{
"author": "<string>",
"note": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"reviewerActions": [
{
"author": "<string>",
"action": "<string>",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z"
}
],
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z"
}
}Admin
Add a reviewer note to a Praxis Shield incident
Appends a reviewer note to the incident. Mounted under the admin gate (isAdmin) and RAP-scoped via the institutions.edit entitlement (super bypasses): the caller must manage at least one of the incident’s institutions.
POST
/
api
/
admin
/
security
/
threats
/
{incidentId}
/
notes
Add a reviewer note to a Praxis Shield incident
curl --request POST \
--url https://pria.praxislxp.com/api/admin/security/threats/{incidentId}/notes \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"note": "<string>"
}
'{
"success": true,
"incident": {
"_id": "<string>",
"severity": 2,
"categories": [
"<string>"
],
"title": "<string>",
"summary": "<string>",
"user": "<string>",
"userEmail": "<string>",
"userFname": "<string>",
"userLname": "<string>",
"institutionIds": [
"<string>"
],
"institutions": [
{
"_id": "<string>",
"name": "<string>"
}
],
"evidence": [
{}
],
"llmAssessments": [
{}
],
"reviewerNotes": [
{
"author": "<string>",
"note": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"reviewerActions": [
{
"author": "<string>",
"action": "<string>",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z"
}
],
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z"
}
}Authorizations
JWT token passed in x-access-token header
Path Parameters
Body
application/json
Reviewer note text (trimmed; required non-empty)
Was this page helpful?
Get the live flagged history records cited by a Praxis Shield incidentRecord a reviewer action intent on a Praxis Shield incident
⌘I