Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GET /visits

https://api-vclinic.vseepreview.com/vc/next/api_v3/visits?room_code=ck1zs&start_time=1635721200&end_time=1637708400

Input

Parameter Name

Type

Description

room_code

String

Room’s code

start_time

Integer

UNIX timestamp

end_time

Integer

UNIX timestamp

fields

String

Comma-separated list of field names that you want to return in the response. Should contain recordings to receive the recording objects for each visit

with_recordings_only

Integer

0 / 1

Filter out visits that have no recordings. This will allow to fetch only a list of visits that have recordings.




...

Code Block
{
  "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,
              "participants": [
                {
                  "first_name": "Keven2",
                  "last_name": "Teodoro2",
                  "vseeid": "conciergedev+user575",
                },
                {
                  "first_name": "Keven2",
                  "last_name": "Teodoro2",
                  "vseeid": "provider.w@vclinic.com",
                }
              ],
              "start": 1633966696,
              "version": 3
          }, {
              "id": 222,
              "visit_id": "82828",
              "end": 1636432432,
              "start": 1636431741,
              "version": 3,
              "participants": [
                {
                  "first_name": "Keven2",
                  "last_name": "Teodoro2",
                  "vseeid": "conciergedev+user575",
                },
                {
                  "first_name": "Keven2",
                  "last_name": "Teodoro2",
                  "vseeid": "provider.w@vclinic.com",
                }
              ]
          }]
      }
    },
    {
      "id": "yyy",
      "recordings": {...}
    }
  ]
}

GET /visits/:id/recordings/:recording_id

https://api-vclinic.vseepreview.com/vc/next/api_v3/visits/82828/recordings/111

Input

Parameter Name

Type

Description

id

String

Visit ID

recording_id

String

The recording ID from visits.data.recordings.id

Response

Code Block
{
  "id": 111,
  "visit_id": 82828,
  "end": 1633966813,
  "participants": [
    {
      "first_name": "Keven2",
      "last_name": "Teodoro2",
      "vseeid": "conciergedev+user575",
    },
    {
      "first_name": "Keven2",
      "last_name": "Teodoro2",
      "vseeid": "provider.w@vclinic.com",
    }
  ],
  "start": 1633966696,
  "version": 3,
  "path": {
    "url":"https://vseeserver-recording-prod.s3-us-west-2.amazonaws.com/laxdnbgvetqblvye/1636431607681_0be77640-61a2-4c7d-8ff9-2d0e16505a51__jitsi_2021-11-09-04-22-21.mp4?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20211112T151817Z&X-Amz-SignedHeaders=host&X-Amz-Expires=14400&X-Amz-Credential=AKIAJ644UPRQFLQ3T4PA%2F20211112%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=8a5b6906d8b09bcf425dc98f8164517a45dcc934666e441c4e95bc107e9ab982",
    "expiry": 1634966813
  }
}

...