Update observable#
update an Alert Observable.
Query#
PATCH /api/alert/artifact/{id}
With:
id
: Alert identifier
Updatable fields are: tlp
, ioc
, sighted
, tags
, message
, ignoreSimilarity
Request Body Example#
{
"ioc": True,
"tags":["malicious"]
}
Response#
Status codes#
200
: if Alert observable is updated successfully401
: Authentication error403
: Authorization error
ResponseBody Example#
{
"_id":"~1564784",
"id":"~1564784",
"createdBy":"analyst@soc",
"updatedBy":"analyst@soc",
"createdAt":1637091448338,
"updatedAt":1637092980667,
"_type":"case_artifact",
"dataType":"ip",
"data":"1.2.3.4",
"startDate":1637091448338,
"tlp":2,
"tags":["malicious"],
"ioc":true,
"sighted":true,
"message":"sample description",
"reports":{},
"stats":{},
"ignoreSimilarity":false
}
{
"type": "AuthenticationError",
"message": "Authentication failure"
}
{
"type": "AuthorizationError",
"message": "Your are not authorized to create custom field, you haven't the permission manageCustomField"
}
Last update:
October 13, 2023 07:01:35