List Identities
Shows Identities associated with your account.
Note: This endpoint will also return a pagination key on the root level. Please refer to the pagination section within our docs for more information.
Query parameters
Max number of resources returned in a paged collection. Defaults to 10, with a minimum of 1 and maximum 500.
Token used to request the next page in paginated results. Defaults to 'null'
Field to sort by. Defaults to 'id'.
Sort direction. Defaults to 'desc'.
Filter by organization ID within Huntress account.
Filter by identity provider type.
Filter by billable status.
Filter by enabled status.
Filter by external/guest status.
Filter by risk level.
Filter by MFA enabled status.
Filter by an escalation ID within Huntress account.
Response
List Identities
Example response
{
"identities": [
{
"id": 12345678,
"account": {
"id": 1,
"name": "Your Account Name"
},
"organization": {
"id": 1,
"name": "Your Organization Name"
},
"tenant": {
"id": 123,
"type": "google_workspace"
},
"username": "user@example.com",
"email": "user@example.com",
"enabled": true,
"billable": true,
"enabled_products": [
"itdr",
"ispm"
],
"mfa_enabled": true,
"risk_level": "none",
"risk_state": "none",
"risk_detail": "none",
"risk_last_updated_at": "2022-03-01T20:05:10Z",
"password_last_changed_at": "2022-03-01T20:05:10Z",
"created_at": "2022-03-01T20:05:10Z",
"updated_at": "2022-03-01T20:05:10Z"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.