POST
/
sessions
curl --request POST \
  --url https://api.techinterviewer.ai/sessions \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "interview_config_id": "<string>"
}'
{
  "sessions": [
    {
      "status": "<string>",
      "unique_session_id": "<string>",
      "created_at": "<any>",
      "candidate_metadata": "<any>",
      "client_type": "<string>",
      "messages": [
        {
          "message": {},
          "createdAt": 123
        }
      ],
      "session_specific_questions": [
        {}
      ],
      "recording_url": "<string>",
      "structured_outputs": [
        {}
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.