curl --request GET \
--url https://api.conveo.ai/v1/interviews/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "cm393cvz80bdpmcedfzacog26",
"participant": {
"id": "cm14zq5t10egyfkyrfy34ihlc",
"name": "John S"
},
"facets": [
{
"label": "Age",
"values": [
"35"
]
},
{
"label": "Car Ownership",
"values": [
"Electric Vehicle",
"Previous ICE Owner"
]
},
{
"label": "Opinion on Jaguar's Strategy",
"values": [
"Positive impression",
"Interested in future models"
]
}
],
"videoDownloadURL": "https://...",
"transcriptAsWebVTT": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Get a single interview by ID
curl --request GET \
--url https://api.conveo.ai/v1/interviews/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "cm393cvz80bdpmcedfzacog26",
"participant": {
"id": "cm14zq5t10egyfkyrfy34ihlc",
"name": "John S"
},
"facets": [
{
"label": "Age",
"values": [
"35"
]
},
{
"label": "Car Ownership",
"values": [
"Electric Vehicle",
"Previous ICE Owner"
]
},
{
"label": "Opinion on Jaguar's Strategy",
"values": [
"Positive impression",
"Interested in future models"
]
}
],
"videoDownloadURL": "https://...",
"transcriptAsWebVTT": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
A single interview
The response is of type object
.
Was this page helpful?