V1
| API | GetVulnerabilityData |
| Purpose | To get data of vulnerability tickets that are dumped using Save vulnerability API |
| API URL | https://<API URL>:<API Port>v1/vulnerability/orgentityid/{orgentityid} |
| Authentication type | Basic /Token |
|
Method Input |
GET |
|
Input Params in Query String: |
You can pass the following filters in the URL to get desired data:
|
Note:
ModuleId=1 for Incident Management and ModuleId=13 for vulnerability Management.
| Filter field | Supported Filter operator |
| start_date | >= ,< , >, <=, = |
| end_date | >= ,< , >, <=, = |
| Ticket_number | = |
| assignment_group | = |
| sys_id | = |
| ModuleId | = |
| Example: | https://<API URL>:<API Port>/v1/vulnerability/orgentityid/7?queryParams={"filter":"ticket_number=XXX"} |
Parameters Required in API:
| Column | Column type | Remarks |
|---|---|---|
| orgentityid | string | The organization entity ID. |
| queryParams | string | The specific queryParams |
Output:
{
"Count": 1,
"Result": [
{
"TicketNumber": "1234",
"Summary": "test",
"Description": "testing data",
"AssignedGroup": "'",
"StatusCode": "1",
"CreationDate": "2019-11-18 06:24:52.000",
"LastModifiedDate": "2019-11-18 06:24:52.000",
"ClosedDate": "",
"sys_id": "'",
"Col1": "'",
"Col2": "'",
"Col3": "'",
"Col4": "'",
"Col5": "'",
"Col6": "'",
"Col7": "'",
"Col8": "'",
"Col9": "'",
"Col10": "'",
"Col11": "'",
"Col12": "'",
"Col13": "'",
"Col14": "'",
"Col15": "'",
"Col16": "'",
"Col17": "'",
"Col18": "'",
"Col19": "'",
"Col20": "'",
"iAutomate_CreatedDateInGMT": "2025-09-12 10:28:03.330",
"iAutomate_UpdatedDateInGMT": "2025-09-12 10:28:03.330",
"ChangeId": null,
"Priority": ""
}
],
"Status": "Success",
"Message": "Success"
}
Parameter Returned in API result.
| Column | Column type | Value | Remarks |
|---|---|---|---|
| Count | int | Count of vulnerability | Total count of vulnerability |
| Result | JSON string | All vulnerability data in JSON array | Provide all vulnerability data with parameters |
| Status | string | Success/Fail | This field provides status |
| Message | string | Success/Fail | This field provides status |