Skip to main content

Retrieve discovered applications for tenant

GET 

/discovered-applications

Fetches a list of applications that have been identified within the environment. This includes details such as application names, discovery dates, potential correlated saas_vendors and related suggested connectors.

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
    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
    filter string

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

    Filtering is supported for the following fields and operators:

    name: eq, sw, co

    description: eq, sw, co

    Example: name eq "Okta" and description co "Okta"
    sorters comma-separated

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

    Sorting is supported for the following fields: name, description, discoveredAt, discoverySource

    Example: name

Responses

Successfully retrieved list of discovered applications.

Schema
  • Array [
  • type
    description
    example
    items object
    id uuid

    Unique identifier for the discovered application.

    name string

    Name of the discovered application.

    discoverySource string

    Source from which the application was discovered.

    discoveredVendor string

    The vendor associated with the discovered application.

    description string

    A brief description of the discovered application.

    recommendedConnectors string[]

    List of recommended connectors for the application.

    discoveredTimestamp date-time

    The timestamp when the application was discovered, in ISO 8601 format.

    title
  • ]
Loading...