v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Ats > Feedback

Reads all Feedbacks

This endpoint retrieves all feedbacks associated with a candidate's applications.

get/api/2026-07-01/resources/ats/feedbacks

Query parameters

ids[]string[]

retrieve only the feedbacks that match the IDs passed in the request.

retrieve only the feedbacks that match the IDs passed in the request.

[
  "1",
  "2",
  "3"
]
ats_application_ids[]string[]

filter feedbacks based on multiple application IDs.

filter feedbacks based on multiple application IDs.

[
  "1",
  "2",
  "3"
]
ats_candidate_idstring

fetch feedbacks related to a specific candidate.

Example:[1, 2, 3]

fetch feedbacks related to a specific candidate.

Response

OK

Example response

{
  "data": [
    {
      "id": "1",
      "rating": 4,
      "description": "The candidate has a great attitude and is a good fit for the team.",
      "ats_application_id": "1",
      "ats_application_phase_id": "1",
      "created_at": "2022-01-01T00:00:00Z",
      "ats_candidate_id": "1",
      "ats_evaluation_forms_id": "1",
      "evaluation_form_answers": [
        {
          "id": 1,
          "score": 3,
          "note": "Good communication skills."
        }
      ]
    }
  ]
}