Function getReportOutputs

  • Get the list of the outputs produced so far for the given report request. The outputs are generated asynchronously and are complete only when the status of the report request is 'done' or 'failed' or 'aborted'.

    Parameters

    • id: string

      Identifier of the request.

    • query: {
          filter?: string;
          limit?: number;
          page?: string;
          sort?: ("+outputId" | "-outputId" | "+sizeBytes" | "-sizeBytes")[];
      }

      an object with query parameters

      • Optionalfilter?: string

        The advanced filtering to use for the query. Refer to RFC 7644 for the syntax. Cannot be combined with any of the fields marked as deprecated. All conditional statements within this query parameter are case insensitive. The following fields support the eq (equals) operator: outputId Example: outputId eq "123" or outputId eq "321"

      • Optionallimit?: number

        Limit the returned result set

      • Optionalpage?: string

        If present, the cursor that starts the page of data that is returned.

      • Optionalsort?: ("+outputId" | "-outputId" | "+sizeBytes" | "-sizeBytes")[]

        Sorting parameters

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetReportOutputsHttpResponse>

    GetReportOutputsHttpError