curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/studies/{studyId}/interviews \
--header 'Authorization: Bearer <token>'{
"results": [
{
"interviewBookingId": "<string>",
"studyId": "<string>",
"state": "SCHEDULED",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"title": "<string>",
"description": "<string>",
"conferenceType": "NONE",
"observerRoomId": "<string>",
"participants": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "PARTICIPANT",
"participantId": "<string>"
}
],
"hosts": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "HOST",
"userId": "<string>"
}
],
"guests": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "GUEST",
"userId": "<string>"
}
]
}
],
"total": 123,
"pageInfo": {
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}Get a paginated list of interviews in a study
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/studies/{studyId}/interviews \
--header 'Authorization: Bearer <token>'{
"results": [
{
"interviewBookingId": "<string>",
"studyId": "<string>",
"state": "SCHEDULED",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"title": "<string>",
"description": "<string>",
"conferenceType": "NONE",
"observerRoomId": "<string>",
"participants": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "PARTICIPANT",
"participantId": "<string>"
}
],
"hosts": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "HOST",
"userId": "<string>"
}
],
"guests": [
{
"email": "<string>",
"rsvpStatus": "NOREPLY",
"type": "GUEST",
"userId": "<string>"
}
]
}
],
"total": 123,
"pageInfo": {
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The cursor to start from
The number of items to return
x <= 10010
The states of the interview bookings to filter by. If nothing is provided, all states will be included.
SCHEDULED, CANCELED, COMPLETED, NO_SHOWED The interviews
Show child attributes
The ID of the interview
The ID of the study
SCHEDULED, CANCELED, COMPLETED, NO_SHOWED NONE, ZOOM, GOOGLE_MEET, CALENDLY, CUSTOM, MICROSOFT_TEAMS Show child attributes
The email of the attendee
The status of the attendee
NOREPLY, MAYBE, YES, NO PARTICIPANT Show child attributes
Show child attributes
The total number of items in your workspaces based on your search parameters
Information about the current page
Show child attributes
Whether there are additional pages of results
Whether there is a prior page of results
The start of the current page of results
The end of the current page of results. Use to fetch the next page