BlueJeans is being sunset. Please refer to more details

Scheduling Televisits via API


For scheduling televisits via API, your BlueJeans account must be enabled with the telehealth entitlement. If your BlueJeans account does not have the telehealth entitlement, please connect with the support team.  

Set teleVisitEnabled flag as true in "advancedMeetingOptions" in the post body of scheduled_meeting API in order to make a televisit.

curl --location --request POST 'https://api.a.bluejeans.com/v1/user/ID/scheduled_meeting' \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "title": "Test Televist",
  "description": "string",
  "start": 1588898700000,
  "end": 1588899700000,
  "timezone": "America/New_York",
  "endPointType" : "REST_API",
  "endPointVersion" : "1.0",
  "isLargeMeeting": false,
  "advancedMeetingOptions": {
    "teleVisitEnabled": true
  },