Skip to main content

List all user apps

GET 

/user-apps/all

experimental

This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.

This API returns the list of all user apps with specified filters. This API must be used with filters query parameter.

Request

Query Parameters

    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
    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
    filters stringrequired

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

    Filtering is supported for the following fields and operators:

    id: eq

    ownerId: eq

    ownerName: eq, sw

    ownerAlias: eq, sw

    accountId: eq

    sourceAppId: eq

    Example: name eq "user app name"

Header Parameters

    X-SailPoint-Experimental stringrequired

    Default value: true

    Use this header to enable this experimental API.

    Example: true

Responses

List of user apps

Schema

  • Array [

  • id string

    The user app id

    created date-time

    Time when the user app was created

    modified date-time

    Time when the user app was last modified

    hasMultipleAccounts boolean

    True if the owner has multiple accounts for the source

    useForPasswordManagement boolean

    True if the source has password feature

    provisionRequestEnabled boolean

    True if the source app related to the user app is provision request enabled

    appCenterEnabled boolean

    Default value: true

    True if the source app related to the user app is shown in the app center

    sourceApp

    object

    id string

    the source app ID

    type string

    It will always be "APPLICATION"

    name string

    the source app name

    source

    object

    id string

    the source ID

    type string

    It will always be "SOURCE"

    name string

    the source name

    account

    object

    id string

    the account ID

    type string

    It will always be "ACCOUNT"

    name string

    the account name

    owner

    object

    id string

    The identity ID

    type string

    It will always be "IDENTITY"

    name string

    The identity name

    alias string

    The identity alias

  • ]

Loading...