Skip to main content

List owned user apps

GET 

/user-apps

This API returns the list of user apps assigned to logged in user

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 string

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

    Filtering is supported for the following fields and operators:

    id: eq

    ownerName: eq, sw

    ownerAlias: eq, sw

    accountId: eq

    sourceAppId: eq

    Example: name eq "user app name"

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...