Creates a new board. Board name, type and filter ID is required.
name
- Must be less than 255 characters.type
- Valid values: scrum, kanbanfilterId
- ID of a filter that the user has permissions to view. Note, if the user does not have the 'Create
shared objects' permission and tries to create a shared board, a private board will be created instead (remember
that board sharing depends on the filter sharing).location
- The container that the board will be located in. location
must include the type
property (Valid
values: project, user). If choosing 'project', then a project must be specified by a projectKeyOrId
property in
location
. If choosing 'user', the current user is chosen by default. The projectKeyOrId
property should not
be provided.Note:
projectTypeKey
for software boards must be 'software' and
the projectTemplateKey
must be either com.pyxis.greenhopper.jira:gh-kanban-template
or
com.pyxis.greenhopper.jira:gh-scrum-template
.Optional
callback: undefinedDeletes the board. Admin without the view permission can still remove the board.
Deletes the board. Admin without the view permission can still remove the board.
Optional
callback: undefinedRemoves the property from the board identified by the id. Ths user removing the property is required to have permissions to modify the board.
Removes the property from the board identified by the id. Ths user removing the property is required to have permissions to modify the board.
Optional
callback: undefinedReturns all boards. This only includes boards that the user has permission to view.
Deprecation notice: The required OAuth 2.0 scopes will be updated on February 15, 2024.
read:board-scope:jira-software
, read:project:jira
Returns all boards. This only includes boards that the user has permission to view.
Deprecation notice: The required OAuth 2.0 scopes will be updated on February 15, 2024.
read:board-scope:jira-software
, read:project:jira
Optional
parameters: AgileParameters.GetAllBoardsOptional
callback: undefinedReturns all quick filters from a board, for a given board ID.
Returns all quick filters from a board, for a given board ID.
Optional
callback: undefinedReturns all sprints from a board, for a given board ID. This only includes sprints that the user has permission to view.
Returns all sprints from a board, for a given board ID. This only includes sprints that the user has permission to view.
Optional
callback: undefinedReturns all versions from a board, for a given board ID. This only includes versions that the user has permission to view. Note, if the user does not have permission to view the board, no versions will be returned at all. Returned versions are ordered by the name of the project from which they belong and then by sequence defined by user.
Returns all versions from a board, for a given board ID. This only includes versions that the user has permission to view. Note, if the user does not have permission to view the board, no versions will be returned at all. Returned versions are ordered by the name of the project from which they belong and then by sequence defined by user.
Optional
callback: undefinedReturns the board for the given board ID. This board will only be returned if the user has permission to view it. Admins without the view permission will see the board as a private one, so will see only a subset of the board's data (board location for instance).
Returns the board for the given board ID. This board will only be returned if the user has permission to view it. Admins without the view permission will see the board as a private one, so will see only a subset of the board's data (board location for instance).
Optional
callback: undefinedReturns any boards which use the provided filter id. This method can be executed by users without a valid software license in order to find which boards are using a particular filter.
Returns any boards which use the provided filter id. This method can be executed by users without a valid software license in order to find which boards are using a particular filter.
Optional
callback: undefinedReturns all issues that belong to an epic on the board, for the given epic ID and the board ID. This only includes issues that the user has permission to view. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Returns all issues that belong to an epic on the board, for the given epic ID and the board ID. This only includes issues that the user has permission to view. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Optional
callback: undefinedGet all issues you have access to that belong to the sprint from the board. Issue returned from this resource contains additional fields like: sprint, closedSprints, flagged and epic. Issues are returned ordered by rank. JQL order has higher priority than default rank.
Get all issues you have access to that belong to the sprint from the board. Issue returned from this resource contains additional fields like: sprint, closedSprints, flagged and epic. Issues are returned ordered by rank. JQL order has higher priority than default rank.
Optional
callback: undefinedReturns the value of the property with a given key from the board identified by the provided id. The user who retrieves the property is required to have permissions to view the board.
Returns the value of the property with a given key from the board identified by the provided id. The user who retrieves the property is required to have permissions to view the board.
Optional
callback: undefinedReturns the keys of all properties for the board identified by the id. The user who retrieves the property keys is required to have permissions to view the board.
Returns the keys of all properties for the board identified by the id. The user who retrieves the property keys is required to have permissions to view the board.
Optional
callback: undefinedGet the board configuration. The response contains the following fields:
id
- ID of the board.name
- Name of the board.filter
- Reference to the filter used by the given board.location
- Reference to the container that the board is located in. Includes the container type (Valid values:
project, user).subQuery
(Kanban only) - JQL subquery used by the given board.columnConfig
- The column configuration lists the columns for the board, in the order defined in the column
configuration. For each column, it shows the issue status mapping as well as the constraint type (Valid values:
none, issueCount, issueCountExclSubs) for the min/max number of issues. Note, the last column with statuses
mapped to it is treated as the "Done" column, which means that issues in that column will be marked as already
completed.estimation
(Scrum only) - Contains information about type of estimation used for the board. Valid values: none,
issueCount, field. If the estimation type is "field", the ID and display name of the field used for estimation is
also returned. Note, estimates for an issue can be updated by a PUT /rest/api/3/issue/{issueIdOrKey} request,
however the fields must be on the screen. "timeoriginalestimate" field will never be on the screen, so in order
to update it "originalEstimate" in "timetracking" field should be updated.ranking
- Contains information about custom field used for ranking in the given board.Get the board configuration. The response contains the following fields:
id
- ID of the board.name
- Name of the board.filter
- Reference to the filter used by the given board.location
- Reference to the container that the board is located in. Includes the container type (Valid values:
project, user).subQuery
(Kanban only) - JQL subquery used by the given board.columnConfig
- The column configuration lists the columns for the board, in the order defined in the column
configuration. For each column, it shows the issue status mapping as well as the constraint type (Valid values:
none, issueCount, issueCountExclSubs) for the min/max number of issues. Note, the last column with statuses
mapped to it is treated as the "Done" column, which means that issues in that column will be marked as already
completed.estimation
(Scrum only) - Contains information about type of estimation used for the board. Valid values: none,
issueCount, field. If the estimation type is "field", the ID and display name of the field used for estimation is
also returned. Note, estimates for an issue can be updated by a PUT /rest/api/3/issue/{issueIdOrKey} request,
however the fields must be on the screen. "timeoriginalestimate" field will never be on the screen, so in order
to update it "originalEstimate" in "timetracking" field should be updated.ranking
- Contains information about custom field used for ranking in the given board.Optional
callback: undefinedReturns all epics from the board, for the given board ID. This only includes epics that the user has permission to view. Note, if the user does not have permission to view the board, no epics will be returned at all.
Returns all epics from the board, for the given board ID. This only includes epics that the user has permission to view. Note, if the user does not have permission to view the board, no epics will be returned at all.
Optional
callback: undefinedOptional
callback: undefinedReturns all issues from the board's backlog, for the given board ID. This only includes issues that the user has permission to view. The backlog contains incomplete issues that are not assigned to any future or active sprint. Note, if the user does not have permission to view the board, no issues will be returned at all. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Returns all issues from the board's backlog, for the given board ID. This only includes issues that the user has permission to view. The backlog contains incomplete issues that are not assigned to any future or active sprint. Note, if the user does not have permission to view the board, no issues will be returned at all. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Optional
callback: undefinedReturns all issues from a board, for a given board ID. This only includes issues that the user has permission to view. An issue belongs to the board if its status is mapped to the board's column. Epic issues do not belongs to the scrum boards. Note, if the user does not have permission to view the board, no issues will be returned at all. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Returns all issues from a board, for a given board ID. This only includes issues that the user has permission to view. An issue belongs to the board if its status is mapped to the board's column. Epic issues do not belongs to the scrum boards. Note, if the user does not have permission to view the board, no issues will be returned at all. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Optional
callback: undefinedReturns all issues that do not belong to any epic on a board, for a given board ID. This only includes issues that the user has permission to view. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Returns all issues that do not belong to any epic on a board, for a given board ID. This only includes issues that the user has permission to view. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Optional
callback: undefinedReturns all projects that are associated with the board, for the given board ID. If the user does not have permission to view the board, no projects will be returned at all. Returned projects are ordered by the name.
A project is associated with a board if the board filter contains reference the project or there is an issue from the project that belongs to the board.
The board filter contains reference the project only if JQL query guarantees that returned issues will be returned
from the project set defined in JQL. For instance the query project in (ABC, BCD) AND reporter = admin
have
reference to ABC and BCD projects but query project in (ABC, BCD) OR reporter = admin
doesn't have reference to
any project.
An issue belongs to the board if its status is mapped to the board's column. Epic issues do not belongs to the scrum boards.
Returns all projects that are associated with the board, for the given board ID. If the user does not have permission to view the board, no projects will be returned at all. Returned projects are ordered by the name.
A project is associated with a board if the board filter contains reference the project or there is an issue from the project that belongs to the board.
The board filter contains reference the project only if JQL query guarantees that returned issues will be returned
from the project set defined in JQL. For instance the query project in (ABC, BCD) AND reporter = admin
have
reference to ABC and BCD projects but query project in (ABC, BCD) OR reporter = admin
doesn't have reference to
any project.
An issue belongs to the board if its status is mapped to the board's column. Epic issues do not belongs to the scrum boards.
Optional
callback: undefinedReturns all projects that are statically associated with the board, for the given board ID. Returned projects are ordered by the name.
A project is associated with a board if the board filter contains reference the project.
The board filter contains reference the project only if JQL query guarantees that returned issues will be returned
from the project set defined in JQL. For instance the query project in (ABC, BCD) AND reporter = admin
have
reference to ABC and BCD projects but query project in (ABC, BCD) OR reporter = admin
doesn't have reference to
any project.
Returns all projects that are statically associated with the board, for the given board ID. Returned projects are ordered by the name.
A project is associated with a board if the board filter contains reference the project.
The board filter contains reference the project only if JQL query guarantees that returned issues will be returned
from the project set defined in JQL. For instance the query project in (ABC, BCD) AND reporter = admin
have
reference to ABC and BCD projects but query project in (ABC, BCD) OR reporter = admin
doesn't have reference to
any project.
Optional
callback: undefinedReturns the quick filter for a given quick filter ID. The quick filter will only be returned if the user can view the board that the quick filter belongs to.
Returns the quick filter for a given quick filter ID. The quick filter will only be returned if the user can view the board that the quick filter belongs to.
Optional
callback: undefinedOptional
callback: undefinedMove issues from the backlog to the board (if they are already in the backlog of that board).
This operation either moves an issue(s) onto a board from the backlog (by adding it to the issueList for the board)
Or transitions the issue(s) to the first column for a kanban board with backlog. At most 50 issues may be moved at
once.
Move issues from the backlog to the board (if they are already in the backlog of that board).
This operation either moves an issue(s) onto a board from the backlog (by adding it to the issueList for the board)
Or transitions the issue(s) to the first column for a kanban board with backlog. At most 50 issues may be moved at
once.
Optional
callback: undefinedSets the value of the specified board's property.
You can use this resource to store a custom data against the board identified by the id. The user who stores the data is required to have permissions to modify the board.
Sets the value of the specified board's property.
You can use this resource to store a custom data against the board identified by the id. The user who stores the data is required to have permissions to modify the board.
Optional
callback: undefinedOptional
callback: undefined
Creates a new board. Board name, type and filter ID is required.
name
- Must be less than 255 characters.type
- Valid values: scrum, kanbanfilterId
- ID of a filter that the user has permissions to view. Note, if the user does not have the 'Create shared objects' permission and tries to create a shared board, a private board will be created instead (remember that board sharing depends on the filter sharing).location
- The container that the board will be located in.location
must include thetype
property (Valid values: project, user). If choosing 'project', then a project must be specified by aprojectKeyOrId
property inlocation
. If choosing 'user', the current user is chosen by default. TheprojectKeyOrId
property should not be provided.Note:
projectTypeKey
for software boards must be 'software' and theprojectTemplateKey
must be eithercom.pyxis.greenhopper.jira:gh-kanban-template
orcom.pyxis.greenhopper.jira:gh-scrum-template
.