jira.js
    Preparing search index...

    Function getRedactionStatus

    • Retrieves the current status of a redaction job ID.

      The jobStatus will be one of the following:

      • IN_PROGRESS - The redaction job is currently in progress
      • COMPLETED - The redaction job has completed successfully.
      • PENDING - The redaction job has not started yet

      Parameters

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

          Redaction job id

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              bulkRedactionResponse?: {
                  results: {
                      externalId: string;
                      successful: boolean;
                      [key: string]: unknown;
                  }[];
                  [key: string]: unknown;
              };
              jobStatus?: string & {}
              | "IN_PROGRESS"
              | "PENDING"
              | "COMPLETED";
              [key: string]: unknown;
          },
      >