uploadInterview
ارفع تسجيل مقابلة للتحليل
جسم الطلب · application/json
candidate_idمطلوبstring
معرّف المرشّح
vacancy_idمطلوبstring
معرّف الوظيفة
media_urlمطلوبstring
رابط تسجيل المقابلة (mp4 أو mp3 أو m4a)
الاستجابات
import axios from 'axios';
async function uploadInterview() {
try {
const response = await axios.post('https://api.talentmind.app/v1/interviews', {
candidate_id: 'cand_4f21',
vacancy_id: 'ui-engineer',
media_url: 'https://cdn.acme.io/int-204.mp4'
}, {
headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
console.log(response.data);
} catch (error) {
console.error('Error:', error);
}
}
uploadInterview();{
"success": true,
"id": "int_8d24f0",
"status": "processing",
"created_at": "2026-06-13T09:24:00Z"
}