Function getAppEvaluations

  • Returns a paginated list of historical evaluations for the specified app. Use the next and prev cursor values from the response links to navigate through pages of results.

    Parameters

    • guid: string

      The unique identifier of the app.

    • query: {
          all?: boolean;
          fileMode?: boolean;
          format?: string;
          limit?: number;
          next?: string;
          prev?: string;
          sort?: "started" | "+started" | "-started";
      }

      an object with query parameters

      • Optionalall?: boolean

        When true, includes full evaluation details in each result. When false, detail fields are omitted.

      • OptionalfileMode?: boolean

        When true, adds file download headers to the response.

      • Optionalformat?: string

        The output format for the response. Accepts json or xml.

      • Optionallimit?: number

        Maximum number of results to return per page.

      • Optionalnext?: string

        A cursor token for fetching the next page of results.

      • Optionalprev?: string

        A cursor token for fetching the previous page of results.

      • Optionalsort?: "started" | "+started" | "-started"

        The field to sort results by. Prefix with - for descending order or + for ascending.

    • Optionaloptions: ApiCallOptions

    Returns Promise<apps.GetAppEvaluationsHttpResponse>

    GetAppEvaluationsHttpError