POST
/
custom
/
interview
curl --request POST \
  --url https://public.api.micro1.ai/custom/interview \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "interview_name": "Candidate Screening Interview",
  "custom_question_list": [
    {
      "question": "What are your strengths and weaknesses?",
      "time": 2,
      "type": "audio"
    }
  ],
  "interview_language": "en",
  "can_change_interview_language": false,
  "is_proctoring_required": true
}'
{
  "status": true,
  "message": "Interview created successfully",
  "data": {
    "interview_id": "123e4567-e89b-12d3-a456-426614174000",
    "invite_url": "https://interview.micro1.ai/intro/micro1?uid=123e4567-e89b-12d3-a456-426614174000"
  }
}

Authorizations

x-api-key
string
header
required

API key to access the API

Body

application/json

Request body to create an interview

Request to create an interview with only custom questions

Response

200
application/json

Successful response

Response for creating an interview