GET
/
interview-configs
/
{id}
Read Interview Config
curl --request GET \
  --url https://api.techinterviewer.ai/interview-configs/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "title": "<string>",
  "length": 123,
  "language": "<string>",
  "jobTitle": "<string>",
  "questions": [
    {
      "question": "<string>",
      "follow_ups": 123,
      "id": "<string>"
    }
  ],
  "scorecard": [
    {
      "signal": "<string>",
      "scale": 123,
      "weight": 123,
      "PointCriteria": {}
    }
  ],
  "prompt": "<string>",
  "structuredOutputs": [
    {
      "key": "<string>",
      "data_type": "<string>",
      "extraction_instructions": "<string>"
    }
  ],
  "createdAt": "<any>",
  "updatedAt": "<any>",
  "userId": "<string>",
  "teamId": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Response

200
application/json

Successful Response

The response is of type object.