Add Alert Labels
POSTPATH_TO_CONSOLE/api/v34.00/settings/custom-labels
x-prisma-cloud-target-env: {"permission":"manageAlerts"}
Creates a custom alert label to augment audit events.
cURL Request
Refer to the following example cURL command:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
-d "{labels:"new_label"}" \
"https://<CONSOLE>/api/v<VERSION>/settings/custom-labels"
Request
- application/json
Body
labelsstring (string)[]
Labels are the custom labels.
Responses
- 200
- default
OK
- curl
- python
- go
- nodejs
- csharp
- php
- CURL
curl -L 'PATH_TO_CONSOLE/api/v34.00/settings/custom-labels' \
-H 'Content-Type: application/json' \
-d '{
"labels": [
"string"
]
}'