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>"
}
]
}Create interview rooms for a project.
Creates one or more interview rooms linked to a project. Each room gets a unique access token for the respondent URL.
Parameters:
Returns:
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>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response model for room creation.
Show child attributes
Was this page helpful?