POST /qvm/tickets/assign

Update the remediation ticket for the assigned vulnerability

Table 1. POST /qvm/tickets/assign resource details
MIME Type

application/json

Table 2. POST /qvm/tickets/assign request body details
Parameter Data Type MIME Type Description Sample

ticket

JSON

application/json

  • 'ticketId': required
  • 'priority' one of required : Critical, Major, Minor, Warning, Informational
  • 'status' one of required : Opened, Fixed, Re-Opened, Closed
  • 'dueDate' Optional : yyyy-MM-dd HH:mm:ss
  • 'assignedUser' required : valid Qradar user account name or a valid email
  • 'comment' Optional : text
  • 'commentUser' Optional : valid Qradar user account name, if not included will default current API user.

[ { "ticketId":"1000", "status":"Opened", "priority":"Critical", "dueDate":"2015-01-04 12:00:00", "assignedUser":"admin", "comment":"testComment", "commentUser":"admin" } ]

Table 3. POST /qvm/tickets/assign response codes
HTTP Response Code Unique Code Description

200

The request to assign a ticket completed successfully

420

9104

An error occurred while trying to assign a ticket due to invalid arguments

Response Description

success message if update succeed

Response Sample