Function getAppMediaList

  • Lists media content. Returns a JSON formatted array of strings describing the available media content or error if the optional path supplied is not found.

    Parameters

    • appId: string

      Unique application identifier.

    • path: string

      The path to sub folder with static content relative to the root folder. Use empty path to access the root folder.

    • query: { show?: string }

      an object with query parameters

      • Optionalshow?: string

        Optional. List output can include files and folders in different ways:

        • Not recursive, default if show option is not supplied or incorrectly specified, results in output with files and empty directories for the path specified only.
        • Recursive(r), use ?show=r or ?show=recursive, results in a recursive output with files, all empty folders are excluded.
        • All(a), use ?show=a or ?show=all, results in a recursive output with files and empty directories.
    • Optionaloptions: ApiCallOptions

    Returns Promise<GetAppMediaListHttpResponse>

    GetAppMediaListHttpError