v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Application Feedback Request

applicationFeedbackRequest.create

Request feedback on an application without scheduling an interview. The interviewEventId returned in the response can be provided to applicationFeedback.submit to complete the feedback request.

The interview used must be configured to request feedback.

Requires the candidatesWrite permission.

post/applicationFeedbackRequest.create

Request body

applicationIdstring uuid required

The id of the application you are requesting feedback for

interviewIdstring uuid required

The id of the interview associated with this feedback request

interviewerUserIdstring uuid required

The user you are requesting feedback from

Example request

{
  "applicationId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "interviewId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "interviewerUserId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e"
}

Response

Responses from the applicationFeedbackRequest.create endpoint

OR

Example response

{
  "success": true,
  "results": {
    "interviewEventId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "interviewerUserId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
    "applicationId": "550e8400-e29b-41d4-a716-446655440000"
  }
}