Interview Question/Answer File Type Conversion

This endpoint allows you to convert an Interview Answer Audio to text for storing & Interview Question Text to Audio for playing on client side purposes

1. Convert Interview Question Text to Audio

Get audio from text for interview question

post
Authorizations
Body
textstringRequired

Question Text

Responses
200
Interview Audio Created
application/json
post
POST /api/v1/interviewAudio/audioFromText HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "text": "text"
}
{
  "data": "binary"
}

2. Interview Answer Audio to Text

Get text from audio for interview question

post
Authorizations
Body
orgIdstringRequired

The organization ID

interviewIdstringRequired

The interview ID

interviewMessageIdstringRequired

The interview message ID

filestring · binaryRequired

The file to upload

Responses
200
Interview Answer transcript Created
application/json
post
POST /api/v1/interviewAudio/textFromAudio HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: multipart/form-data
Accept: */*
Content-Length: 81

{
  "orgId": "text",
  "interviewId": "text",
  "interviewMessageId": "text",
  "file": "binary"
}
{
  "data": "text",
  "answerLocation": "text"
}

Last updated