Vulnerabilities
Bulk reopen vulnerabilities
Reopens multiple security vulnerabilities identified within the system, restoring them to active tracking and analysis.
POST
/
api
/
vulnerabilities
/
reopen
Bulk reopen vulnerabilities
curl --request POST \
--url https://{baseUrl}/api/v1/api/vulnerabilities/reopen \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'import requests
url = "https://{baseUrl}/api/v1/api/vulnerabilities/reopen"
payload = { "ids": ["<string>"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['<string>']})
};
fetch('https://{baseUrl}/api/v1/api/vulnerabilities/reopen', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/vulnerabilities/reopen"
payload := strings.NewReader("{\n \"ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}⌘I
Bulk reopen vulnerabilities
curl --request POST \
--url https://{baseUrl}/api/v1/api/vulnerabilities/reopen \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'import requests
url = "https://{baseUrl}/api/v1/api/vulnerabilities/reopen"
payload = { "ids": ["<string>"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['<string>']})
};
fetch('https://{baseUrl}/api/v1/api/vulnerabilities/reopen', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/vulnerabilities/reopen"
payload := strings.NewReader("{\n \"ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}