Skip to main content

IntelAccessHistoryAccessItemsSlice

Properties

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

Examples

  • Prepare the resource
$IntelAccessHistoryAccessItemsSlice = Initialize-IntelAccessHistoryAccessItemsSlice  -Items null `
-TotalCount 128 `
-Next https://tenant.example.api.cloud.sailpoint.com/intelligence/identities/v1/ef38f94347e94562b5bb8424a56397d8/access-history/access-items?limit=10&offset=10&count=true
  • Convert the resource to JSON
$IntelAccessHistoryAccessItemsSlice | ConvertTo-JSON

[Back to top]