Apis related to the backlog

Hierarchy

  • CommonHttpService
    • BacklogService

Constructors

  • Internal

    Create a new instance of the service.

    Parameters

    • getClientInstance: (() => CommonHttpClient)
        • (): CommonHttpClient
        • Returns CommonHttpClient

    Returns BacklogService

Methods

  • Move issues to the backlog of a particular board (if they are already on that board). This operation is equivalent to remove future and active sprints from a given set of issues if the board has sprints If the board does not have sprints this will put the issues back into the backlog from the board. At most 50 issues may be moved at once.

    Parameters

    Returns Promise<unknown>

    Returns the list of issue with status of rank operation.

    example:

    {
    "entries": [
    {
    "issueId": 10000,
    "issueKey": "PR-1",
    "status": 200
    },
    {
    "issueId": 10001,
    "issueKey": "PR-2",
    "status": 200
    },
    {
    "errors": [
    "JIRA Agile cannot execute the rank operation at this time. Please try again later."
    ],
    "issueId": 10002,
    "issueKey": "PR-3",
    "status": 503
    }
    ]
    }
  • Method to initialize the class. Normally used to set up validation rules.

    Returns void