v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBAts > Feedback
Creates a Feedback
This endpoint allows to create new feedback entries for candidates.
post/api/2026-07-01/resources/ats/feedbacks
Request body
Example request
{
"ats_candidate_id": "1",
"rating": 4,
"ats_application_id": "1",
"ats_application_phase_id": "1",
"description": "The candidate has a great attitude and is a good fit for the team.",
"mention_ids": [
"1",
"2",
"3"
],
"ats_evaluation_forms_id": "[1, 2, 3]"
}Response
CREATED
Example response
{
"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."
}
]
}