Skip to main content

List available accounts for user app

GET 

/user-apps/:id/available-accounts

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 available accounts for the specified user app. The user app needs to belong lo logged in user.

Request

Path Parameters

    id stringrequired

    ID of the user app

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

Header Parameters

    X-SailPoint-Experimental stringrequired

    Default value: true

    Use this header to enable this experimental API.

    Example: true

Responses

List of available accounts for the specified user app

Schema

  • Array [

  • appId string

    The source app ID

    appDisplayName string

    The source app display name

    sourceAccount

    object

    id string

    The account ID

    nativeIdentity string

    The native identity of account

    displayName string

    The display name of account

    sourceId string

    The source ID of account

    sourceDisplayName string

    The source name of account

  • ]

Loading...