jira.js
    Preparing search index...

    Function getSprint

    • Returns a single sprint, for a given sprint Id. The sprint will only be returned if the user can view the board that the sprint was created on, or view at least one of the issues in the sprint.

      Parameters

      • client: Client
      • parameters: { sprintId: number }
        • sprintId: number

          The Id of the requested sprint.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              activatedDate?: string;
              autoStartStop?: boolean;
              completeDate?: string;
              endDate?: string;
              goal?: string;
              id?: number;
              incompleteIssuesDestinationId?: number;
              name?: string;
              originBoardId?: number;
              self?: string;
              startDate?: string;
              state?: string;
              synced?: boolean;
              [key: string]: unknown;
          },
      >