Skip to main content
POST
/
api
/
interviews
/
rooms
Create Rooms
curl --request POST \
  --url https://app.aseed.ai/custdev/api/interviews/rooms \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "count": 1,
  "max_duration_minutes": 30,
  "expires_in_days": 7,
  "voice": "<string>",
  "realtime_provider": "<string>",
  "language": "<string>",
  "topics_for_respondent": "<string>"
}
'
{
  "rooms": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "access_token": "<string>",
      "url": "<string>",
      "room_name": "<string>",
      "max_duration_minutes": 123,
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by": "<string>",
      "record_id": "<string>",
      "respondent_email": "<string>",
      "research_goals_override": "<string>",
      "interview_guide_override": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "finished_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "voice": "<string>",
      "realtime_provider": "<string>",
      "language": "<string>",
      "topics_for_respondent": "<string>",
      "display_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request model for creating interview rooms.

project_id
string<uuid>
required
count
integer
default:1
max_duration_minutes
integer
default:30
expires_in_days
integer
default:7
voice
string | null
realtime_provider
string | null
language
string | null
topics_for_respondent
string | null

Response

Successful Response

Response model for room creation.

rooms
InterviewRoomResponse · object[]
required