Vulnerabilities
Create Vulnerability
Use this API to create a new vulnerability in the Vulnerability Library.
post/api/controls/v1/vulnerabilities
Request body
Example request
{
"orgGroupId": "123e4567-e89b-12d3-a456-426614174000",
"identifier": "VULN-2025-001",
"name": "Cross-Site Scripting (XSS) in Web Application",
"description": "This vulnerability allows attackers to inject malicious client-side scripts into web pages viewed by other users. The vulnerability arises from inadequate validation and sanitization of user input that is subsequently displayed in web pages.",
"framework": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "ISO 27001",
"nameKey": "framework.key.iso"
},
"category": {
"name": "Financial Category",
"nameKey": "IM.FinancialCategoryName"
},
"status": "Active"
}Response
Created
Example response
{
"id": "123e4567-e89b-12d3-a456-426614174000"
}