Skip to main content

Intelrareaccessslice

Rare access slice embedded in the aggregate identity response.

Properties

NameTypeDescriptionNotes
items[]InteloutlieraccessitemFirst page of rare access items for the identity.[required]
nextstrAbsolute URL to the next rareAccess page; present only when more results exist.[optional]
}

Example

from sailpoint.intelligence.models.intelrareaccessslice import Intelrareaccessslice

intelrareaccessslice = Intelrareaccessslice(
items=[
sailpoint.intelligence.models.inteloutlieraccessitem.inteloutlieraccessitem(
id = 'outlier-access-001',
display_name = 'Example_Admin_Access',
description = '',
access_type = 'ENTITLEMENT',
source_name = 'Example SaaS Source',
extremely_rare = False, )
],
next='https://tenant.example.api.cloud.sailpoint.com/v2026/intelligence/identities/ef38f94347e94562b5bb8424a56397d8/outliers/rare-access?limit=10&offset=10'
)

[Back to top]