...
We use Jira authentication, that is a user must be logged int Jira to be able to retrieve survey information. In addition to this survey permissions are applied. This means that your user can get the same level of information from both the app UI and via REST.
REST services
Request | Type | Description |
---|
getAnswers | GET | Gets survey answers to survey custom questions for the single project during the specified date range. Parameters
|
Example - link to the example request & response below | ||
getAvgReport | GET | Gets results of the Average Rating Report for an active survey in a specified project within the specified date range. Parameters
|
getByIssue | GET | Gets survey rating and user comment for a specified ticket. One of the following parameters must be specified:
|
getDateReport | GET | Retrieves data from the "Date Report on User Usage" report for the specified project within the specified date range. Parameters
|
Request and response examples
getAnswers
http://example.com/jira/rest/surveysData/1.0/getAnswers?projectKey=TEST&startDate=&endDate=
getAvgReport
http://example.com/jira/rest/surveysData/1.0/
...
getAvgReport?pKey=TEST&startDate=&endDate=
...
getByIssue
http://example.com/jira/rest/surveysData/1.0/rating/getByIssue?issueKey=TEST-1
...
Code Block |
---|
{ "status": "200", "result": [ { "issueKey": "TEST-1", "issueId": 999, "issueRating": 4, "issueViewRating": "4 out of 5", "issueComment": "some comment" }, { "issueKey": "TEST-1", "issueId": 333, "issueRating": 5, "issueViewRating": "5 out of 5", "issueComment": "another comment" } ] } |
getDateReport
http://example.com/jira/rest/surveysData/1.0/getDateReport?pKey=TEST&startDate=&endDate=