GET
/
studies
/
{studyId}
/
interviews
List interviews for a study
curl --request GET \
  --url https://api.conveo.ai/v1/studies/{studyId}/interviews \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "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"
    }
  ],
  "pagination": {
    "total": 42,
    "page": 2,
    "pageSize": 20
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

studyId
string
required

Query Parameters

page
integer
default:1
Required range: x >= 1
pageSize
integer
default:20
Required range: 1 <= x <= 100

Response

200
application/json

A paginated list of interviews for the study

The response is of type object.