List all tickets of a company.
Get the list of tickets attributed to findings.
Path parameters
The id of the target company.
Query parameters
The number of the page requested.
The number of result items in a single response.
A single or comma separated value of ticket status.
A single or comma separated value of delivery state. Applies only to tickets in Unassigned status; other statuses do not expose a delivery state.
The type of assignee for the ticket. Internal represents tickets assigned to users within the organization, External represents tickets assigned to vendor. If omitted, tickets with both assignee types will be returned.
Email address of the user who created the ticket. If provided, only tickets created by this user will be returned.
Comma separated severity values of this finding. Possible values are; Info, Low, Medium, High and Critical. When left out, all is implied.
The beginning of the date range in which the ticket was opened. Start date must be older than end date.
The end of the date range in which the findings were found. End date must be newer than start date. Make sure the difference between opened_end_date and opened_start_date is 3 months at most.
The beginning of the date range in which the ticket was closed. Start date must be older than end date.
The end of the date range in which the ticket was closed. End date must be newer than start date. Make sure the difference between closed_end_date and closed_start_date is 3 months at most.
The beginning of the date range in which the ticket was updated. Start date must be older than end date.
The end of the date range in which the ticket was updated. End date must be newer than start date. Make sure the difference between updated_end_date and updated_start_date is 3 months at most.
Response
Success
Example response
[
{
"TicketType": "Finding",
"AssigneeType": "Internal",
"Finding": {
"Id": 2590965999,
"Module": "Email Security",
"Severity": "Medium"
},
"Tag": {
"Name": "Ransomware"
},
"Status": "Assigned",
"DeliveryState": "InvitationSent",
"Owners": [
"john.doe@acmeinc.com"
],
"FollowUpUsers": [
"john.doe@acmeinc.com"
],
"OpenDate": "2021-08-09T08:30:30.682Z",
"AssignDate": "2021-08-09T08:30:30.682Z",
"ClosedDate": "2021-08-09T08:30:30.682Z",
"UpdatedDate": "2021-08-09T08:30:30.682Z",
"UpdatedBy": "SYSTEM",
"CreatorEmail": "user@example.com",
"CreatorTenant": "Acme Corporation",
"History": [
{
"Type": "New Ticket",
"Description": "Ticket is created and assigned to john.doe@acmeinc.com",
"HistoryDate": "2021-08-09T08:30:30.682Z",
"Owner": "john.doe@acmeinc.com"
}
]
}
]