Patch Indicator
curl --request PATCH \
--url https://api.example.com/v1/indicators/{indicator_uuid} \
--header 'Content-Type: application/json' \
--data '{}'{
"data": {
"uuid": "<string>",
"value": "<string>",
"malice": "<string>",
"first_seen": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"is_enriched": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"malice_source": "<string>",
"malice_overridden_at": "2023-11-07T05:31:56Z",
"enrichment_results": {}
},
"meta": {}
}Indicators
Update Indicator
Update an indicator’s malice verdict.
Send {"malice": "Malicious"} to set an analyst override.
Send {"malice": null} to reset to the enrichment-computed value.
PATCH
/
v1
/
indicators
/
{indicator_uuid}
Patch Indicator
curl --request PATCH \
--url https://api.example.com/v1/indicators/{indicator_uuid} \
--header 'Content-Type: application/json' \
--data '{}'{
"data": {
"uuid": "<string>",
"value": "<string>",
"malice": "<string>",
"first_seen": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"is_enriched": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"malice_source": "<string>",
"malice_overridden_at": "2023-11-07T05:31:56Z",
"enrichment_results": {}
},
"meta": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.calseta.com/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Body
application/json
Patch request for updating an indicator — PATCH /v1/indicators/{uuid}.
Indicator malice verdict — shared validation enum.
Available options:
Pending, Benign, Suspicious, Malicious ⌘I

