In-app assistant
POST /assistant/sessions/{id}/voice-turns Session or API key
Append one completed spoken exchange to the transcript.
Only on an interview session. Lets a call continued by typing carry the spoken turns forward in context. Returns 204 No Content.
Path parameters
idstring (UUID) required- The session id.
Body
rolestring requireduserorassistant.Exampleusercontentstring required- The transcribed/spoken text.
curl -X POST "https://freehire.me/api/v1/assistant/sessions/<id>/voice-turns" \
-H "Authorization: Bearer $HIREALL_API_KEY" -H 'Content-Type: application/json' \
-d '{"role":"user","content":"I led the migration to Kubernetes."}'