Skip to main content
GET
/
api
/
interviews
/
rooms
Get Rooms
curl --request GET \
  --url https://app.aseed.ai/custdev/api/interviews/rooms \
  --header 'Authorization: Bearer <token>'
[
  {
    "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.

Query Parameters

project_id
string<uuid> | null
status
string | null

Response

Successful Response

id
string
required
project_id
string
required
access_token
string
required
url
string
required
room_name
string
required
max_duration_minutes
integer
required
status
string
required
created_at
string<date-time>
required
created_by
string
required
record_id
string | null
respondent_email
string | null
research_goals_override
string | null
interview_guide_override
string | null
started_at
string<date-time> | null
finished_at
string<date-time> | null
expires_at
string<date-time> | null
voice
string | null
realtime_provider
string | null
language
string | null
topics_for_respondent
string | null
display_name
string | null
Maximum string length: 42