List feedbacks for an application

Returns a paginated list of feedbacks submitted for activities on the given application, including reviewer profiles, overall recommendations, and form responses. Token scopes: ats:read, worker:read

Authentication

AuthorizationBearer
## Authentication The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail. ```curl curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \ -H 'Authorization: Bearer YOUR-TOKEN-HERE' ``` [Learn more about authentication](/api/authentication)
OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/

Path parameters

application_idstringRequiredformat: "uuid"
Unique identifier of the application to retrieve feedbacks for.

Query parameters

statusenumOptional
Filter feedbacks by submission status.
Allowed values:
should_hide_sensitive_fieldsbooleanOptional
When true, form responses marked as sensitive are omitted from the response. Defaults to true.
cursorstringOptional
Pagination cursor returned by a previous response.
limitintegerOptional1-100
Maximum number of feedbacks to return per page.

Response

Paginated list of application feedbacks.
datalist of objects
Page of application feedbacks.
has_moreboolean
Whether more pages are available beyond the current page.
next_cursorstring or null

Cursor to fetch the next page; null when there are no more pages.

total_countinteger
Total number of feedbacks for this application.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error