CreateRemediationNote
This method can be used for the following functionality: Create new remediation note for a vulnerability on a project that you have access to.
Last updated
{
"projectId": "..."
}{
"note": "..."
}{
"note_type": "PLAINTEXT"
}curl -X POST 'https://demo.attackforge.com/api/ss/vulnerability/5e8ee4657be05608d16c2e01/remediationNote' -H 'Host: demo.attackforge.com' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close' -d '{
"projectId": "5e7c29afa3362408cf502a11",
"note": "This issue has been fixed in release v1.1"
}'{
"note": {
"id": "...",
"note": "...",
"note_html": "...",
"note_type": "PLAINTEXT/RICHTEXT"
}
}