Skip to main content
POST
/
v1
/
vulnerabilities
/
{vulnerability_id}
/
patch_verifications
Create a vulnerability patch verification
curl --request POST \
  --url https://api.synack.com/v1/vulnerabilities/{vulnerability_id}/patch_verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "id": 123,
  "message": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "user": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "slug": "<string>",
    "role": "client",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vulnerability_id
string
required

Vulnerability ID

Body

application/json
message
string
required

Patch verification message

Response

Patch verification created successfully

id
integer
message
string
status
string
created_at
string<date-time>
user
object