Update Incident Status
PATCHhttps://api.us-west1.email.dlp.paloaltonetworks.com/incident/api/v1/incidents/:incidentId/status
You can send a PATCH request to the API to update the status of an Email DLP incident.
Request
Path Parameters
incidentId stringrequired
- application/json
Bodyrequired
valuestring
Inidicates the current status of the Email DLP incident, this can indicate whether the incident is open, under review, resovled, or closed.
Possible values: [closed
, resolved
, under_review
, open
]
Responses
- 200
- 400
- 401
- 403
- 404
- 500
Ok
Invalid Request
Unauthorized
Forbidden
Resource Not Found
Internal Server Error
Authorization: http
name: Bearertype: httpscheme: bearer
- curl
- python
- go
- nodejs
- csharp
- php
- CURL
curl -L -X PATCH 'https://api.us-west1.email.dlp.paloaltonetworks.com/incident/api/v1/incidents/:incidentId/status' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"value": "closed"
}'
ResponseClear