jira.js
    Preparing search index...

    Function getReviewById

    • Retrieve the currently stored Review data for the given ID.

      The result will be what is currently stored, ignoring any pending updates or deletes.

      Only Connect apps that define the jiraOperationsInfoProvider module can access this resource. This resource requires the 'READ' scope for Connect apps.

      Parameters

      • client: Client
      • parameters: { reviewId: string }
        • reviewId: string

          The ID of the Review to fetch.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              associations?: {
                  associationType?: | string & {}
                  | "issueIdOrKeys"
                  | "serviceIdOrKeys"
                  | "ati:cloud:compass:event-source";
                  values?: string[];
                  [key: string]: unknown;
              }[];
              createdDate: Date;
              description: string;
              id: string;
              lastUpdated: Date;
              reviews: string[];
              schemaVersion: string & {}
              | "1.0";
              status:
                  | "unknown"
                  | "completed"
                  | string & {}
                  | "in progress"
                  | "outstanding actions";
              summary: string;
              updateSequenceNumber: number;
              url: string;
              [key: string]: unknown;
          },
      >