Skip to main content

Gets a list of differences of specific accessType for the given identity between 2 snapshots

GET 

/historical-identities/:id/compare/:access-type

This method gets a list of differences of specific accessType for the given identity between 2 snapshots Requires authorization scope of 'idn:identity-history:read'

Request

Path Parameters

    id stringrequired

    The identity id

    Example: 8c190e6787aa4ed9a90bd9d5344523fb
    accessType stringrequired

    The specific type which needs to be compared

    Example: role

Query Parameters

    access-associated boolean

    Indicates if added or removed access needs to be returned. true - added, false - removed, null - both added & removed

    Example: 2007-03-01T13:00:00Z
    snapshot1 string

    The snapshot 1 of identity

    Example: 2008-03-01T13:00:00Z
    snapshot2 string

    The snapshot 2 of identity

    Example: 2009-03-01T13:00:00Z
    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true

Responses

A list of events for the identity

Schema
  • Array [
  • id string

    the id of the access item

    eventType string

    Possible values: [ADD, REMOVE]

    displayName string

    the display name of the access item

    sourceName string

    the source name of the access item

  • ]
Loading...