Get Answer By Applicants
This endpoint retrieves questions and answers for applicants in a specific application process, providing detailed information about each question and its corresponding answer.
Endpoint Overview
- HTTP Method:
GET
- Endpoint URL:
https://api.vinter.me/api/v1/Application/GetAnswerByApplicationStepId?applicationStepId=your-application-step-id
Request Headers
Header Name | Description | Example Value |
---|---|---|
X-Api-Key | API key for organizational authentication. | api_key |
Content-Type | Specifies the media type of the request. | application/json |
Response Format
A successful request returns a JSON object structured as follows:
{
"data": [
{
"question": {
"questionId": "bb66fba0-59c9-49f8-a8fd-6eb05975536c",
"questionText": "Potansiyel bir sorunu tespit ettiğiniz ve durum ciddileşmeden çözdüğünüz bir örnek verir misiniz?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "43365efa-9ff9-4fce-9c15-327896995972",
"questionText": "İhtiyacınız olan tüm bilgiler olmadan karar vermek zorunda kaldığınız bir durumda nasıl ilerlediğinizi ve sonucu anlatır mısınız?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "f25309ea-05e6-4e05-bda6-86f92a58f896",
"questionText": "Ekip içinde uyumun sağlanmasına katkıda bulunduğunuz durumu ve rolünüzü anlatır mısınız?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "7e4be7f1-42f7-49a9-95b3-c31903f1b575",
"questionText": "Yaptığınız iş ile ilgili güncel kalabilmek için en son yeni ne öğrendiğinize ilişkin bir örnek verebilir misiniz? Bu bilgiyi öğrenme ihtiyacı nasıl ortaya çıktı?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "0bbca3f0-b28b-4254-a4dd-4f8c38f35b56",
"questionText": "Bir projenin veya görevin ilerleyişinde her şeyin yolunda gittiğinden nasıl emin olduğunuzu örnek vererek anlatır mısınız?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "bc7f84bd-2e12-4139-977c-256f94d7fff9",
"questionText": "Ne yapmanız gerektiğinin söylenmesini beklemek yerine harekete geçmek için inisiyatif aldığınız bir iş yeri deneyiminizi anlatabilir misiniz?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "6905cab1-180f-4ff0-a728-2d89f12e39ef",
"questionText": "Daha önce aldığınız yapıcı bir geri bildirim karşısında nasıl bir tepki verdiğinizi anlatır mısınız?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "c550ceeb-94e0-45b7-ab83-4f05d414b94c",
"questionText": "Geçmiş işlerinizde iş çıktınızın kaliteli olup olmadığını nasıl değerlendirdiğinizden bahseder misiniz?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
},
{
"question": {
"questionId": "0f023c6b-2257-4ad7-a523-adeffb84d17e",
"questionText": "Sizin girişiminizle işin diğerleri tarafından doğru yapılmasının sağlandığı bir deneyiminizi ve buradaki rolünüzü anlatır mısınız?",
"expectedAnswerType": "video",
"contentURLType": "text",
"contentURL": null,
"choiceContents": []
},
"answer": null
}
],
"success": true,
"message": null,
"isResourceKey": true
}
Detailed Field Descriptions
-
data:
An array containing question and answer pairs for the application. -
question:
Object containing detailed information about each question:- questionId: Unique identifier for the question
- questionText: The actual text of the question
- expectedAnswerType: The expected format of the answer (e.g., "video", "text")
- contentURLType: The type of content URL (e.g., "text", "image")
- contentURL: URL to additional content related to the question (if available)
- choiceContents: Array of multiple choice options (if applicable)
-
answer:
The applicant's response to the question. Can be null if not yet answered. -
success:
Boolean indicating whether the request was successful. -
message:
Additional message information (if any). -
isResourceKey:
Boolean indicating if the message is a resource key.
Use Cases
-
Application Review:
HR teams can review all questions and answers for a specific application to evaluate candidate responses. -
Interview Preparation:
Interviewers can prepare for meetings by reviewing applicant responses to assessment questions. -
Assessment Analysis:
Analyze response patterns and evaluate the effectiveness of different question types. -
Candidate Evaluation:
Compare candidate responses across similar questions to make informed hiring decisions. -
Quality Assurance:
Monitor the completion status of application assessments and identify incomplete responses.