Accessing your feedback
Basic Access
The easiest way to access feedback for you site is through an API call
GET /feedback/v1/feedback
See the swagger docs for more detail.
Fine Grained Access.
GET /feedback/v1/feedback is a wrapper around a value-service API. It should satisfy most needs for extracting feedback entries from ADSP. However, feedback is stored in the ADSP value service with namespace : feedback-service and name : feedback. You can filter the data on a more fine-grained basis by using the value service directly, e.g. you could filter by view, or correlationID. You can use the value service APIs for this purpose. For example:
GET /value/v1/feedback-service/values/feedback
? correlationID='bob@bob.com'
will result in all the feedback submitted by a single user. You can also retrieve data by:
- view
- has comments
- has technical comments.
using context, e.g.
GET /value/v1/feedback-service/values/feedback
? context={view: '/admin/services/feedback', includesComments: true }