Skip to main content

IntelAccessHistoryAccessItemsSlice

Access-item history slice embedded in the aggregate identity response.

Properties

NameTypeDescriptionNotes
items[]IntelAccessItemHistoryEventFirst page of access-item history events for the identity.[required]
total_countintTotal number of events in this category; omitted when items is empty.[optional]
nextstrAbsolute URL to the next access-items page; present when totalCount exceeds the items returned on this page.[optional]
}

Example

from sailpoint.intelligence.models.intel_access_history_access_items_slice import IntelAccessHistoryAccessItemsSlice

intel_access_history_access_items_slice = IntelAccessHistoryAccessItemsSlice(
items=[
{ }
],
total_count=128,
next='https://tenant.example.api.cloud.sailpoint.com/intelligence/identities/v1/ef38f94347e94562b5bb8424a56397d8/access-history/access-items?limit=10&offset=10&count=true'
)

[Back to top]