Skip to main content

Gets a list of access items for the identity filtered by item type

GET 

/historical-identities/:id/access-items

This method retrieves a list of access item for the identity filtered by the access item type Requires authorization scope of 'idn:identity-history:read'

Request

Path Parameters

    id stringrequired

    The identity id

    Example: 8c190e6787aa4ed9a90bd9d5344523fb

Query Parameters

    type string

    The type of access item for the identity. If not provided, it defaults to account.

    Types of access items: accessProfile, account, app, entitlement, role

    Example: account
    filters string

    Filter results using the standard syntax described in V3 API Standard Collection Parameters

    Filtering is supported for the following fields and operators:

    source: eq

    standalone: eq

    privileged: eq

    attribute: eq

    cloudGoverned: eq

    Example: source eq "DataScienceDataset"
    sorters comma-separated

    Sort results using the standard syntax described in V3 API Standard Collection Parameters

    Sorting is supported for the following fields: name, value, standalone, privileged, attribute, source, cloudGoverned, removeDate, nativeIdentity, entitlementCount

    Example: name
    query string

    This param is used to search if certain fields of the access item contain the string provided.

    Searching is supported for the following fields depending on the type:

    Access Profiles: name, description

    Accounts: name, nativeIdentity

    Apps: name

    Entitlements: name, value, description

    Roles: name, description

    Example: Dr. Arden

Responses

The list of access items.

Schema

  • Array [

  • oneOf

    accessType string

    the access item type. accessProfile in this case

    id string

    the access item id

    name string

    the access profile name

    sourceName string

    the name of the source

    sourceId string

    the id of the source

    description string

    the description for the access profile

    displayName string

    the display name of the identity

    entitlementCount string

    the number of entitlements the access profile will create

    appDisplayName string

    the name of

    removeDate string

    the date the access profile is no longer assigned to the specified identity

    standalone booleanrequired

    indicates whether the access profile is standalone

    revocable booleanrequired

    indicates whether the access profile is

  • ]

Loading...