jira.js
    Preparing search index...

    Function deletePriority

    • Deletes an issue priority.

      This operation is asynchronous. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.

      Permissions required: Administer Jira global permission.

      Parameters

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

          The ID of the issue priority.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              description?: string;
              elapsedRuntime: number;
              finished?: number;
              id: string;
              lastUpdate: number;
              message?: string;
              progress: number;
              result?: unknown;
              self: string;
              started?: number;
              status: | string & {}
              | "ENQUEUED"
              | "RUNNING"
              | "COMPLETE"
              | "FAILED"
              | "CANCEL_REQUESTED"
              | "CANCELLED"
              | "DEAD";
              submitted: number;
              submittedBy: number;
              [key: string]: unknown;
          },
      >