Integrations
Abnormal Security
APIs
List Cases

List Cases

Get a list of Abnormal cases identified by Abnormal Security.

For Abnormal's documentation, see Abnormal List Cases API (opens in a new tab).

SDK Import:

from admyral.actions import list_abnormal_security_cases

Arguments:

Argument NameDescriptionRequired
Start Time start_timeThe start time for the cases to list. Must be in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ). Default: 1970-01-01T00:00:00ZYes
End Time end_timeThe end time for the cases to list. Must be in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ). Default: 2100-01-01T00:00:00ZYes
Limit limitThe maximum number of cases to list. Default: 1000Yes

Returns

A JSON array of cases.

Required Secrets

Secret PlaceholderDescription
ABNORMAL_SECURITY_SECRETAbnormal Security secret. See Abnormal Security setup

SDK Example

cases = list_abnormal_security_cases(
	secrets={
		"ABNORMAL_SECURITY_SECRET": "my_stored_abnormal_secret"
	}
)

Example Output

A list of the top 100 cases identified in Abnormal Cases if no filter query parameter is specified, or a paginated list of cases if a filter query parameter is specified.

[
	{
		"caseId": "1234",
		"severity": "Potential Account Takeover"
	}
]