-
Type:
Bug
-
Resolution: Invalid
-
Priority:
Low
-
None
-
Affects Version/s: 7.1.0
-
Component/s: Project - Core Boards
-
7.01
Summary
The new rest REST API endpoint for JIRA Software 7.1 documented at JIRA REST API Reference returns 404.
Environment
- JIRA 7.1.0 onwards
Steps to Reproduce
- Navigate to a Board (to make sure the user has permissions to it)
- get the BoardId from the URL
- go to <instance-url>/rest/api/2/board/
{boardId}
/data
Expected Results
200 message returns with application/json representation of the board data with the given board id
Actual Results
<status> <status-code>404</status-code> <message> null for uri: https://<jira-URL>/rest/api/2/board/4/data </message> </status>
Notes
same is returned when using curl:
curl -v -u user:password -X GET -H "Content-Type: application/json" https://<instance-url>/rest/api/2/board/4/data