List response feedback
Retrieves a paginated list of feedback entries recorded on the caller’s agent responses, ordered by the response’s creation date. Supports filtering by rating. An after cursor that no longer resolves to a response visible to the caller — including responses that have since been deleted — returns 400; restart pagination from the first page.
Authorizations
Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
Headers
Optional external end-user identifier forwarded by the API gateway.
Query Parameters
A request ID to use as a cursor for pagination. Returns feedback entries that come after this ID in the list. If the ID no longer resolves to a request visible to the caller (for example, the underlying response was deleted), the request fails with 400; restart pagination from the first page.
The maximum number of feedback entries to return per page. Must be between 1 and 100. Defaults to 20 items.
1 <= x <= 100The order to return feedback entries in by creation date of the underlying request. 'asc' returns oldest first, 'desc' returns newest first. Defaults to 'desc' (newest first).
asc, desc Only return feedback entries with this rating. Omit to return entries with any rating.
thumbs_up, thumbs_down Response
OK
Paginated list object containing feedback entries with cursor-based pagination metadata.
The object type, always 'list' for paginated list responses.
Array of feedback entries ordered by creation date of the underlying request.
Indicates whether there are more feedback entries available beyond the current page. True if additional pages exist.
The ID of the first feedback entry in the current page. Used as a reference point for pagination.
The ID of the last feedback entry in the current page. Used as a cursor for fetching the next page.