Function getAppEvaluations

  • Find all evaluations for an app GUID. Supports paging via next, prev which are sent in the response body

    Parameters

    • guid: string

      The app guid.

    • query: {
          all?: boolean;
          fileMode?: boolean;
          format?: string;
          limit?: number;
          next?: string;
          prev?: string;
          sort?: string;
      }

      an object with query parameters

      • Optionalall?: boolean

        Get the full data of the evaluation

      • OptionalfileMode?: boolean

        Add file transfer headers to response

      • Optionalformat?: string

        Specify output format, currently supported are 'json' and 'xml'

      • Optionallimit?: number

        Number of results to return per page.

      • Optionalnext?: string

        The app evaluation id to get next page from

      • Optionalprev?: string

        The app evaluation id to get previous page from

      • Optionalsort?: string

        Property to sort list on

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetAppEvaluationsHttpResponse>

    GetAppEvaluationsHttpError