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_id
Unique identifier of the application to retrieve feedbacks for.
Query parameters
status
Filter feedbacks by submission status.
Allowed values:
should_hide_sensitive_fields
When true, form responses marked as sensitive are omitted from the response. Defaults to true.
cursor
Pagination cursor returned by a previous response.
limit
Maximum number of feedbacks to return per page.
Response
Paginated list of application feedbacks.
data
Page of application feedbacks.
has_more
Whether more pages are available beyond the current page.
next_cursor
Cursor to fetch the next page; null when there are no more pages.
total_count
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