Skip to content

ListIssues

Request

Returns a list of issues. Defaults to Open status when status is not provided.

Security
AuthorizationHeader
Query
frominteger

Page number

sizeinteger

Record per page

sort_bystring

Sort by field name

Enum:"issue_id""issue_flows_count""issue_access_count""gen_timestamp""playbook_name""risk""issue_type""first_flow_time"
order_bystring

Order by field asc/desc. If not set it is by default descending.

Enum:"asc""desc"
gen_timestamp_gtstring

Latest activity time greater than

first_flow_time_gtstring

first flow time greater than

riskstring

Risk associated with the playbook selected. 4 is critical, 3 is high risk, 2 is medium and 1 means Low risk

Enum:"4""3""2""1"
issue_typestring

Used to retrieve only a specific issue type. If left empty, the issues will be retrieved for all the types.(recommended)

Enum:"Access from Anonymous IP""Access from Public VPN""Access from Unauthorized Countries""Access to Anonymous IP""Access to Public VPN""Access to Unauthorized Countries""Auth Hash Quality""Auth Hash Security""Auth Protocol Quality""Compromised Password"
playbook_namestring

Playbook name

statusstring

Incident status. Defaults to Open when not provided.

Enum:"Open""Closed""Resolved"
issue_idstring

Issue id

curl -i -X GET \
  'https://apidoc.authmind.com/_mock/v1/docs/v1/issues?from=0&size=0&sort_by=issue_id&order_by=asc&gen_timestamp_gt=string&first_flow_time_gt=string&risk=4&issue_type=Access%20from%20Anonymous%20IP&playbook_name=string&status=Open&issue_id=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
errorstring
resultArray of objects(models.IssueListingOut)
successboolean
totalinteger
Response
{ "error": "string", "result": [ {} ], "success": true, "total": 0 }