Skip to main content
POST
/
applications
/
{id}
/
feedback
Add interview feedback
curl --request POST \
  --url https://hireloam.com/api/v1/applications/{id}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rating": "yes",
  "interview_type": "Technical",
  "feedback": "Strong problem-solving skills. Good communication.",
  "submit": true
}
'
{
  "feedback": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "interview_type": "<string>",
    "rating": "strong_yes",
    "body": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "submitted_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key from Settings > API Keys

Path Parameters

id
string<uuid>
required

The application ID

Body

application/json
feedback
string
required

Detailed feedback content

rating
enum<string>

Overall rating

Available options:
strong_yes,
yes,
no,
strong_no
interview_type
string

Type of interview (e.g., Phone Screen, Technical, Onsite)

submit
boolean

If true, submit immediately. If false, save as draft.

Response

Feedback created

feedback
object