PUT
/
interview
/
{interviewId}
curl --request PUT \
  --url https://public.api.micro1.ai/interview/{interviewId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "interview_name": "Full Stack Engineer Interview",
  "skills": [
    {
      "name": "React",
      "description": "Must be proficient in React Context API"
    }
  ],
  "custom_question_list": [
    {
      "question": "What are your strengths and weaknesses?",
      "time": 2,
      "type": "audio"
    }
  ],
  "interview_language": "en",
  "can_change_interview_language": false,
  "only_coding_round": false,
  "is_coding_round_required": false,
  "selected_coding_language": "python",
  "coding_exercise_details": "Make the DSA problem extremely difficult and focus on a problem that will require recursion to solve efficiently.",
  "is_proctoring_required": true
}'
{
  "status": true,
  "message": "Interview updated successfully"
}

Authorizations

x-api-key
string
header
required

API key to access the API

Path Parameters

interviewId
string
required

ID of the interview to update

Body

application/json

Request body to update an interview

Request to update an interview

Response

200
application/json

Successful response

Response for updating an interview