/visitsList visits with recordings
Base URL https://api.vseepreview.com/api_v3 · operationId listVisitsWithRecordings
Authentication: Admin Token — Requires the Clinic Admin API Token from your dashboard (Developers → App → Edit App).
Retrieve a list of visits with recordings within a specified time range
| Name | In | Type | Required | Enum | Default | Description |
|---|---|---|---|---|---|---|
X-ApiToken | header | string | yes | API token (e.g. your_api_token) | ||
X-AccountCode | header | string | yes | Account code (e.g. vclinic) | ||
room_code | query | string | no | Room's code to filter visits | ||
start_time | query | integer | no | UNIX timestamp — filter visits starting after this time | ||
end_time | query | integer | no | UNIX timestamp — filter visits ending before this time | ||
fields | query | string | no | Comma-separated list of field names to include in response. Use 'recordings' to include recording objects | ||
with_recordings_only | query | integer | no | 0, 1 | Set to `1` to only return visits that have recordings. |
200 — List of visits with recordingswithRecordings
{
"data": [
{
"id": "82828",
"start": 1631628616,
"end": 1631628916,
"actual_start": 1631628211,
"actual_end": null,
"hosts": [],
"type": 2,
"status": 30,
"meeting": {
"recording_auto_start": false,
"phone_numbers": {
"US": [
"+1.650.758.0255"
]
},
"hosts": [
"anton+providersa@vseelab.com",
"chau+provider@vseelab.com"
],
"expiry": 1633643316,
"conference_pin": 838759,
"meeting_id": "1633627695040_2cc263f4-3d07-49fa-97b1-b2955ff40dfa__jitsi"
},
"recordings": {
"count": 1,
"data": [
{
"id": 111,
"visit_id": "82828",
"end": 1633966813,
"start": 1633966696,
"version": 3,
"participants": [
{
"first_name": "Keven2",
"last_name": "Teodoro2",
"vseeid": "conciergedev+user575"
},
{
"first_name": "Keven2",
"last_name": "Teodoro2",
"vseeid": "provider.w@vclinic.com"
}
]
}
]
}
}
]
}
Machine-readable: OpenAPI JSON (operationId: listVisitsWithRecordings)