GET
/
interview-configs
curl --request GET \
  --url https://api.techinterviewer.ai/interview-configs \
  --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.

Response

200 - application/json

Successful Response

The response is of type InterviewConfig · object[].