← Supabase + Vivomeetings integrations

Create Conference with Vivomeetings API on New Row Added from Supabase API

Pipedream makes it easy to connect APIs for Vivomeetings, Supabase and 2,200+ other apps remarkably fast.

Trigger workflow on
New Row Added from the Supabase API
Next, do this
Create Conference with the Vivomeetings API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Supabase trigger and Vivomeetings action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Row Added trigger
    1. Connect your Supabase account
    2. Configure Table
    3. Optional- Configure Row Identifier
    4. Optional- Configure Column
    5. Optional- Select a Filter
    6. Optional- Configure Value
    7. Configure Order By
    8. Optional- Select a Sort Order
    9. Configure timer
  3. Configure the Create Conference action
    1. Connect your Vivomeetings account
    2. Configure Company Id
    3. Select a Host Id
    4. Configure Subject
    5. Configure Agenda
    6. Configure Start
    7. Select a Time Zone
    8. Configure Duration
    9. Optional- Select a Auto Record
    10. Optional- Select a Auto Stream
    11. Optional- Configure Auto Transcribe
    12. Configure One Time Access Code
    13. Optional- Configure Secure URL
    14. Optional- Configure Host Initiated Recording
    15. Configure Security Pin
    16. Select a Mute Mode
    17. Select one or more Contact Ids
    18. Optional- Configure Participant Emails
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event for every new row added in a table. [See documentation here](https://supabase.com/docs/reference/javascript/select)
Version:0.0.4
Key:supabase-new-row-added

Supabase Overview

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Trigger Code

import base from "../common/base.mjs";
import {
  DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
  ConfigurationError,
} from "@pipedream/platform";
import constants from "../../common/constants.mjs";

export default {
  key: "supabase-new-row-added",
  name: "New Row Added",
  description: "Emit new event for every new row added in a table. [See documentation here](https://supabase.com/docs/reference/javascript/select)",
  version: "0.0.4",
  type: "source",
  props: {
    ...base.props,
    column: {
      propDefinition: [
        base.props.supabase,
        "column",
      ],
      optional: true,
    },
    filter: {
      propDefinition: [
        base.props.supabase,
        "filter",
      ],
      optional: true,
    },
    value: {
      propDefinition: [
        base.props.supabase,
        "value",
      ],
      optional: true,
    },
    orderBy: {
      propDefinition: [
        base.props.supabase,
        "column",
      ],
      label: "Order By",
      description: "Column name to order by",
    },
    sortOrder: {
      propDefinition: [
        base.props.supabase,
        "sortOrder",
      ],
    },
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  methods: {
    _getOffset() {
      return this.db.get("offset") || 0;
    },
    _setOffset(offset) {
      this.db.set("offset", offset);
    },
  },
  async run() {
    const {
      table,
      column,
      filter,
      value,
      orderBy,
      sortOrder,
      rowIdentifier,
    } = this;

    if ((column || filter || value) && !(column && filter && value)) {
      throw new ConfigurationError("If `column`, `filter`, or `value` is used, all three must be entered");
    }

    const offset = this._getOffset();
    const client = await this.supabase._client();
    const query = client
      .from(table)
      .select()
      .order(orderBy, {
        ascending: sortOrder,
      })
      .range(offset, offset + constants.MAX_OFFSET);

    if (filter) {
      const filterMethod = this.supabase[filter];
      filterMethod(query, column, value);
    }

    const { data } = await query;
    this._setOffset(offset + data.length);

    for (const row of data) {
      let summary = "New row in table";
      if (row[rowIdentifier]) {
        summary = `${summary}: ${row[rowIdentifier]}`;
      }
      this.$emit(row, {
        summary,
      });
    }
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
SupabasesupabaseappThis component uses the Supabase app.
Tabletablestring

The name of the table to watch for new rows

Row IdentifierrowIdentifierstring

The column name to use as the row identifier

Columncolumnstring

Column name to search by

FilterfilterstringSelect a value from the drop down menu:{ "label": "Equal", "value": "equalTo" }{ "label": "Not Equal", "value": "notEqualTo" }{ "label": "Greater Than", "value": "greaterThan" }{ "label": "Greater Than or Equal To", "value": "greaterThanOrEqualTo" }{ "label": "Less Than", "value": "lessThan" }{ "label": "Less Than or Equal To", "value": "lessThanOrEqualTo" }{ "label": "Contains (Case Sensitive)", "value": "patternMatch" }{ "label": "Contains (Case Insensitive)", "value": "patternMatchCaseInsensitive" }
Valuevaluestring

Value of the column specified to search for

Order ByorderBystring

Column name to order by

Sort OrdersortOrderstringSelect a value from the drop down menu:ascendingdescending
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

Supabase uses API keys for authentication. When you connect your Supabase account, Pipedream securely stores the keys so you can easily authenticate to Supabase APIs in both code and no-code steps.

Supabase provides a Service Key to get started. You can find the service_role in the API Settings page.

Finding the Supabase subdomain

About Supabase

Supabase is an open source Firebase alternative.

Action

Description:Creates a new conference in VivoMeetings. [See the documentation](https://docs.google.com/viewerng/viewer?url=https://vivomeetings.com/wp-content/uploads/2023/01/Partner-APIs-v1.41.docx-1.pdf)
Version:0.0.1
Key:vivomeetings-create-conference

Vivomeetings Overview

The Vivomeetings API allows developers to integrate real-time video conferencing capabilities into their applications. With this API, users can create, manage, and customize video meetings directly through the Pipedream platform. Utilizing Pipedream's serverless execution model, you can interface with the Vivomeetings API to automate meeting setups, dynamically manage participants, and harness data from meeting events for analytics or enhanced user experiences.

Action Code

import { parseObject } from "../../common/utils.mjs";
import vivomeetings from "../../vivomeetings.app.mjs";

export default {
  key: "vivomeetings-create-conference",
  name: "Create Conference",
  description: "Creates a new conference in VivoMeetings. [See the documentation](https://docs.google.com/viewerng/viewer?url=https://vivomeetings.com/wp-content/uploads/2023/01/Partner-APIs-v1.41.docx-1.pdf)",
  version: "0.0.1",
  type: "action",
  props: {
    vivomeetings,
    companyId: {
      propDefinition: [
        vivomeetings,
        "companyId",
      ],
    },
    hostId: {
      propDefinition: [
        vivomeetings,
        "hostId",
      ],
    },
    subject: {
      propDefinition: [
        vivomeetings,
        "subject",
      ],
    },
    agenda: {
      propDefinition: [
        vivomeetings,
        "agenda",
      ],
    },
    start: {
      propDefinition: [
        vivomeetings,
        "start",
      ],
    },
    timeZone: {
      propDefinition: [
        vivomeetings,
        "timeZone",
      ],
    },
    duration: {
      propDefinition: [
        vivomeetings,
        "duration",
      ],
    },
    autoRecord: {
      propDefinition: [
        vivomeetings,
        "autoRecord",
      ],
    },
    autoStream: {
      propDefinition: [
        vivomeetings,
        "autoStream",
      ],
    },
    autoTranscribe: {
      propDefinition: [
        vivomeetings,
        "autoTranscribe",
      ],
    },
    oneTimeAccessCode: {
      propDefinition: [
        vivomeetings,
        "oneTimeAccessCode",
      ],
    },
    secureUrl: {
      propDefinition: [
        vivomeetings,
        "secureUrl",
      ],
    },
    hostInitiatedRecording: {
      propDefinition: [
        vivomeetings,
        "hostInitiatedRecording",
      ],
      optional: true,
    },
    securityPin: {
      propDefinition: [
        vivomeetings,
        "securityPin",
      ],
    },
    muteMode: {
      propDefinition: [
        vivomeetings,
        "muteMode",
      ],
    },
    participants: {
      propDefinition: [
        vivomeetings,
        "contactIds",
        ({ hostId }) => ({
          hostId,
        }),
      ],
    },
    participantEmails: {
      propDefinition: [
        vivomeetings,
        "participantEmails",
      ],
    },
  },
  async run({ $ }) {
    const response = await this.vivomeetings.createConference({
      $,
      data: {
        host_id: this.hostId,
        subject: this.subject,
        agenda: this.agenda,
        start: this.start,
        time_zone: this.timeZone,
        duration: this.duration,
        auto_record: this.autoRecord,
        auto_stream: this.autoStream,
        auto_transcribe: this.autoTranscribe,
        one_time_access_code: this.oneTimeAccessCode,
        secure_url: this.secureUrl,
        host_initiated_recording: this.hostInitiatedRecording,
        security_pin: this.securityPin,
        mute_mode: this.muteMode,
        participants: this.participants,
        participant_emails: parseObject(this.participantEmails)?.map((item) => ({
          email: item,
        })),
      },
    });

    $.export("$summary", `Conference with Id: "${response.conference_id}" created successfully`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
VivomeetingsvivomeetingsappThis component uses the Vivomeetings app.
Company IdcompanyIdstring

The Id of the company.

Host IdhostIdstringSelect a value from the drop down menu.
Subjectsubjectstring

The subject of the meeting.

Agendaagendastring

The description of the meeting.

Startstartstring

Start time, this works in conjunction with the time_zone to set the correct time.

Time ZonetimeZonestringSelect a value from the drop down menu:{ "label": "Africa/Abidjan +00:00", "value": "Africa/Abidjan" }{ "label": "Africa/Accra +00:00", "value": "Africa/Accra" }{ "label": "Africa/Addis_Ababa +03:00", "value": "Africa/Addis_Ababa" }{ "label": "Africa/Algiers +01:00", "value": "Africa/Algiers" }{ "label": "Africa/Asmara +03:00", "value": "Africa/Asmara" }{ "label": "Africa/Asmera +03:00", "value": "Africa/Asmera" }{ "label": "Africa/Bamako +00:00", "value": "Africa/Bamako" }{ "label": "Africa/Bangui +01:00", "value": "Africa/Bangui" }{ "label": "Africa/Banjul +00:00", "value": "Africa/Banjul" }{ "label": "Africa/Bissau +00:00", "value": "Africa/Bissau" }{ "label": "Africa/Blantyre +02:00", "value": "Africa/Blantyre" }{ "label": "Africa/Brazzaville +01:00", "value": "Africa/Brazzaville" }{ "label": "Africa/Bujumbura +02:00", "value": "Africa/Bujumbura" }{ "label": "Africa/Cairo +02:00", "value": "Africa/Cairo" }{ "label": "Africa/Casablanca +01:00", "value": "Africa/Casablanca" }{ "label": "Africa/Ceuta +01:00", "value": "Africa/Ceuta" }{ "label": "Africa/Conakry +00:00", "value": "Africa/Conakry" }{ "label": "Africa/Dakar +00:00", "value": "Africa/Dakar" }{ "label": "Africa/Dar_es_Salaam +03:00", "value": "Africa/Dar_es_Salaam" }{ "label": "Africa/Djibouti +03:00", "value": "Africa/Djibouti" }{ "label": "Africa/Douala +01:00", "value": "Africa/Douala" }{ "label": "Africa/El_Aaiun +01:00", "value": "Africa/El_Aaiun" }{ "label": "Africa/Freetown +00:00", "value": "Africa/Freetown" }{ "label": "Africa/Gaborone +02:00", "value": "Africa/Gaborone" }{ "label": "Africa/Harare +02:00", "value": "Africa/Harare" }{ "label": "Africa/Johannesburg +02:00", "value": "Africa/Johannesburg" }{ "label": "Africa/Juba +02:00", "value": "Africa/Juba" }{ "label": "Africa/Kampala +03:00", "value": "Africa/Kampala" }{ "label": "Africa/Khartoum +02:00", "value": "Africa/Khartoum" }{ "label": "Africa/Kigali +02:00", "value": "Africa/Kigali" }{ "label": "Africa/Kinshasa +01:00", "value": "Africa/Kinshasa" }{ "label": "Africa/Lagos +01:00", "value": "Africa/Lagos" }{ "label": "Africa/Libreville +01:00", "value": "Africa/Libreville" }{ "label": "Africa/Lome +00:00", "value": "Africa/Lome" }{ "label": "Africa/Luanda +01:00", "value": "Africa/Luanda" }{ "label": "Africa/Lubumbashi +02:00", "value": "Africa/Lubumbashi" }{ "label": "Africa/Lusaka +02:00", "value": "Africa/Lusaka" }{ "label": "Africa/Malabo +01:00", "value": "Africa/Malabo" }{ "label": "Africa/Maputo +02:00", "value": "Africa/Maputo" }{ "label": "Africa/Maseru +02:00", "value": "Africa/Maseru" }{ "label": "Africa/Mbabane +02:00", "value": "Africa/Mbabane" }{ "label": "Africa/Mogadishu +03:00", "value": "Africa/Mogadishu" }{ "label": "Africa/Monrovia +00:00", "value": "Africa/Monrovia" }{ "label": "Africa/Nairobi +03:00", "value": "Africa/Nairobi" }{ "label": "Africa/Ndjamena +01:00", "value": "Africa/Ndjamena" }{ "label": "Africa/Niamey +01:00", "value": "Africa/Niamey" }{ "label": "Africa/Nouakchott +00:00", "value": "Africa/Nouakchott" }{ "label": "Africa/Ouagadougou +00:00", "value": "Africa/Ouagadougou" }{ "label": "Africa/Porto-Novo +01:00", "value": "Africa/Porto-Novo" }{ "label": "Africa/Sao_Tome +00:00", "value": "Africa/Sao_Tome" }{ "label": "Africa/Timbuktu +00:00", "value": "Africa/Timbuktu" }{ "label": "Africa/Tripoli +02:00", "value": "Africa/Tripoli" }{ "label": "Africa/Tunis +01:00", "value": "Africa/Tunis" }{ "label": "Africa/Windhoek +02:00", "value": "Africa/Windhoek" }{ "label": "America/Adak -10:00", "value": "America/Adak" }{ "label": "America/Anchorage -09:00", "value": "America/Anchorage" }{ "label": "America/Anguilla -04:00", "value": "America/Anguilla" }{ "label": "America/Antigua -04:00", "value": "America/Antigua" }{ "label": "America/Araguaina -03:00", "value": "America/Araguaina" }{ "label": "America/Argentina/Buenos_Aires -03:00", "value": "America/Argentina/Buenos_Aires" }{ "label": "America/Argentina/Catamarca -03:00", "value": "America/Argentina/Catamarca" }{ "label": "America/Argentina/ComodRivadavia -03:00", "value": "America/Argentina/ComodRivadavia" }{ "label": "America/Argentina/Cordoba -03:00", "value": "America/Argentina/Cordoba" }{ "label": "America/Argentina/Jujuy -03:00", "value": "America/Argentina/Jujuy" }{ "label": "America/Argentina/La_Rioja -03:00", "value": "America/Argentina/La_Rioja" }{ "label": "America/Argentina/Mendoza -03:00", "value": "America/Argentina/Mendoza" }{ "label": "America/Argentina/Rio_Gallegos -03:00", "value": "America/Argentina/Rio_Gallegos" }{ "label": "America/Argentina/Salta -03:00", "value": "America/Argentina/Salta" }{ "label": "America/Argentina/San_Juan -03:00", "value": "America/Argentina/San_Juan" }{ "label": "America/Argentina/San_Luis -03:00", "value": "America/Argentina/San_Luis" }{ "label": "America/Argentina/Tucuman -03:00", "value": "America/Argentina/Tucuman" }{ "label": "America/Argentina/Ushuaia -03:00", "value": "America/Argentina/Ushuaia" }{ "label": "America/Aruba -04:00", "value": "America/Aruba" }{ "label": "America/Asuncion -04:00", "value": "America/Asuncion" }{ "label": "America/Atikokan -05:00", "value": "America/Atikokan" }{ "label": "America/Atka -10:00", "value": "America/Atka" }{ "label": "America/Bahia -03:00", "value": "America/Bahia" }{ "label": "America/Bahia_Banderas -06:00", "value": "America/Bahia_Banderas" }{ "label": "America/Barbados -04:00", "value": "America/Barbados" }{ "label": "America/Belem -03:00", "value": "America/Belem" }{ "label": "America/Belize -06:00", "value": "America/Belize" }{ "label": "America/Blanc-Sablon -04:00", "value": "America/Blanc-Sablon" }{ "label": "America/Boa_Vista -04:00", "value": "America/Boa_Vista" }{ "label": "America/Bogota -05:00", "value": "America/Bogota" }{ "label": "America/Boise -07:00", "value": "America/Boise" }{ "label": "America/Buenos_Aires -03:00", "value": "America/Buenos_Aires" }{ "label": "America/Cambridge_Bay -07:00", "value": "America/Cambridge_Bay" }{ "label": "America/Campo_Grande -04:00", "value": "America/Campo_Grande" }{ "label": "America/Cancun -05:00", "value": "America/Cancun" }{ "label": "America/Caracas -04:00", "value": "America/Caracas" }{ "label": "America/Catamarca -03:00", "value": "America/Catamarca" }{ "label": "America/Cayenne -03:00", "value": "America/Cayenne" }{ "label": "America/Cayman -05:00", "value": "America/Cayman" }{ "label": "America/Chicago -06:00", "value": "America/Chicago" }{ "label": "America/Chihuahua -06:00", "value": "America/Chihuahua" }{ "label": "America/Ciudad_Juarez -07:00", "value": "America/Ciudad_Juarez" }{ "label": "America/Coral_Harbour -05:00", "value": "America/Coral_Harbour" }{ "label": "America/Cordoba -03:00", "value": "America/Cordoba" }{ "label": "America/Costa_Rica -06:00", "value": "America/Costa_Rica" }{ "label": "America/Creston -07:00", "value": "America/Creston" }{ "label": "America/Cuiaba -04:00", "value": "America/Cuiaba" }{ "label": "America/Curacao -04:00", "value": "America/Curacao" }{ "label": "America/Danmarkshavn +00:00", "value": "America/Danmarkshavn" }{ "label": "America/Dawson -07:00", "value": "America/Dawson" }{ "label": "America/Dawson_Creek -07:00", "value": "America/Dawson_Creek" }{ "label": "America/Denver -07:00", "value": "America/Denver" }{ "label": "America/Detroit -05:00", "value": "America/Detroit" }{ "label": "America/Dominica -04:00", "value": "America/Dominica" }{ "label": "America/Edmonton -07:00", "value": "America/Edmonton" }{ "label": "America/Eirunepe -05:00", "value": "America/Eirunepe" }{ "label": "America/El_Salvador -06:00", "value": "America/El_Salvador" }{ "label": "America/Ensenada -08:00", "value": "America/Ensenada" }{ "label": "America/Fort_Nelson -07:00", "value": "America/Fort_Nelson" }{ "label": "America/Fort_Wayne -05:00", "value": "America/Fort_Wayne" }{ "label": "America/Fortaleza -03:00", "value": "America/Fortaleza" }{ "label": "America/Glace_Bay -04:00", "value": "America/Glace_Bay" }{ "label": "America/Godthab -02:00", "value": "America/Godthab" }{ "label": "America/Goose_Bay -04:00", "value": "America/Goose_Bay" }{ "label": "America/Grand_Turk -05:00", "value": "America/Grand_Turk" }{ "label": "America/Grenada -04:00", "value": "America/Grenada" }{ "label": "America/Guadeloupe -04:00", "value": "America/Guadeloupe" }{ "label": "America/Guatemala -06:00", "value": "America/Guatemala" }{ "label": "America/Guayaquil -05:00", "value": "America/Guayaquil" }{ "label": "America/Guyana -04:00", "value": "America/Guyana" }{ "label": "America/Halifax -04:00", "value": "America/Halifax" }{ "label": "America/Havana -05:00", "value": "America/Havana" }{ "label": "America/Hermosillo -07:00", "value": "America/Hermosillo" }{ "label": "America/Indiana/Indianapolis -05:00", "value": "America/Indiana/Indianapolis" }{ "label": "America/Indiana/Knox -06:00", "value": "America/Indiana/Knox" }{ "label": "America/Indiana/Marengo -05:00", "value": "America/Indiana/Marengo" }{ "label": "America/Indiana/Petersburg -05:00", "value": "America/Indiana/Petersburg" }{ "label": "America/Indiana/Tell_City -06:00", "value": "America/Indiana/Tell_City" }{ "label": "America/Indiana/Vevay -05:00", "value": "America/Indiana/Vevay" }{ "label": "America/Indiana/Vincennes -05:00", "value": "America/Indiana/Vincennes" }{ "label": "America/Indiana/Winamac -05:00", "value": "America/Indiana/Winamac" }{ "label": "America/Indianapolis -05:00", "value": "America/Indianapolis" }{ "label": "America/Inuvik -07:00", "value": "America/Inuvik" }{ "label": "America/Iqaluit -05:00", "value": "America/Iqaluit" }{ "label": "America/Jamaica -05:00", "value": "America/Jamaica" }{ "label": "America/Jujuy -03:00", "value": "America/Jujuy" }{ "label": "America/Juneau -09:00", "value": "America/Juneau" }{ "label": "America/Kentucky/Louisville -05:00", "value": "America/Kentucky/Louisville" }{ "label": "America/Kentucky/Monticello -05:00", "value": "America/Kentucky/Monticello" }{ "label": "America/Knox_IN -06:00", "value": "America/Knox_IN" }{ "label": "America/Kralendijk -04:00", "value": "America/Kralendijk" }{ "label": "America/La_Paz -04:00", "value": "America/La_Paz" }{ "label": "America/Lima -05:00", "value": "America/Lima" }{ "label": "America/Los_Angeles -08:00", "value": "America/Los_Angeles" }{ "label": "America/Louisville -05:00", "value": "America/Louisville" }{ "label": "America/Lower_Princes -04:00", "value": "America/Lower_Princes" }{ "label": "America/Maceio -03:00", "value": "America/Maceio" }{ "label": "America/Managua -06:00", "value": "America/Managua" }{ "label": "America/Manaus -04:00", "value": "America/Manaus" }{ "label": "America/Marigot -04:00", "value": "America/Marigot" }{ "label": "America/Martinique -04:00", "value": "America/Martinique" }{ "label": "America/Matamoros -06:00", "value": "America/Matamoros" }{ "label": "America/Mazatlan -07:00", "value": "America/Mazatlan" }{ "label": "America/Mendoza -03:00", "value": "America/Mendoza" }{ "label": "America/Menominee -06:00", "value": "America/Menominee" }{ "label": "America/Merida -06:00", "value": "America/Merida" }{ "label": "America/Metlakatla -09:00", "value": "America/Metlakatla" }{ "label": "America/Mexico_City -06:00", "value": "America/Mexico_City" }{ "label": "America/Miquelon -03:00", "value": "America/Miquelon" }{ "label": "America/Moncton -04:00", "value": "America/Moncton" }{ "label": "America/Monterrey -06:00", "value": "America/Monterrey" }{ "label": "America/Montevideo -03:00", "value": "America/Montevideo" }{ "label": "America/Montreal -05:00", "value": "America/Montreal" }{ "label": "America/Montserrat -04:00", "value": "America/Montserrat" }{ "label": "America/Nassau -05:00", "value": "America/Nassau" }{ "label": "America/New_York -05:00", "value": "America/New_York" }{ "label": "America/Nipigon -05:00", "value": "America/Nipigon" }{ "label": "America/Nome -09:00", "value": "America/Nome" }{ "label": "America/Noronha -02:00", "value": "America/Noronha" }{ "label": "America/North_Dakota/Beulah -06:00", "value": "America/North_Dakota/Beulah" }{ "label": "America/North_Dakota/Center -06:00", "value": "America/North_Dakota/Center" }{ "label": "America/North_Dakota/New_Salem -06:00", "value": "America/North_Dakota/New_Salem" }{ "label": "America/Nuuk -02:00", "value": "America/Nuuk" }{ "label": "America/Ojinaga -06:00", "value": "America/Ojinaga" }{ "label": "America/Panama -05:00", "value": "America/Panama" }{ "label": "America/Pangnirtung -05:00", "value": "America/Pangnirtung" }{ "label": "America/Paramaribo -03:00", "value": "America/Paramaribo" }{ "label": "America/Phoenix -07:00", "value": "America/Phoenix" }{ "label": "America/Port_of_Spain -04:00", "value": "America/Port_of_Spain" }{ "label": "America/Port-au-Prince -05:00", "value": "America/Port-au-Prince" }{ "label": "America/Porto_Acre -05:00", "value": "America/Porto_Acre" }{ "label": "America/Porto_Velho -04:00", "value": "America/Porto_Velho" }{ "label": "America/Puerto_Rico -04:00", "value": "America/Puerto_Rico" }{ "label": "America/Punta_Arenas -03:00", "value": "America/Punta_Arenas" }{ "label": "America/Rainy_River -06:00", "value": "America/Rainy_River" }{ "label": "America/Rankin_Inlet -06:00", "value": "America/Rankin_Inlet" }{ "label": "America/Recife -03:00", "value": "America/Recife" }{ "label": "America/Regina -06:00", "value": "America/Regina" }{ "label": "America/Resolute -06:00", "value": "America/Resolute" }{ "label": "America/Rio_Branco -05:00", "value": "America/Rio_Branco" }{ "label": "America/Rosario -03:00", "value": "America/Rosario" }{ "label": "America/Santa_Isabel -08:00", "value": "America/Santa_Isabel" }{ "label": "America/Santarem -03:00", "value": "America/Santarem" }{ "label": "America/Santiago -04:00", "value": "America/Santiago" }{ "label": "America/Santo_Domingo -04:00", "value": "America/Santo_Domingo" }{ "label": "America/Sao_Paulo -03:00", "value": "America/Sao_Paulo" }{ "label": "America/Scoresbysund -02:00", "value": "America/Scoresbysund" }{ "label": "America/Shiprock -07:00", "value": "America/Shiprock" }{ "label": "America/Sitka -09:00", "value": "America/Sitka" }{ "label": "America/St_Barthelemy -04:00", "value": "America/St_Barthelemy" }{ "label": "America/St_Johns -03:30", "value": "America/St_Johns" }{ "label": "America/St_Kitts -04:00", "value": "America/St_Kitts" }{ "label": "America/St_Lucia -04:00", "value": "America/St_Lucia" }{ "label": "America/St_Thomas -04:00", "value": "America/St_Thomas" }{ "label": "America/St_Vincent -04:00", "value": "America/St_Vincent" }{ "label": "America/Swift_Current -06:00", "value": "America/Swift_Current" }{ "label": "America/Tegucigalpa -06:00", "value": "America/Tegucigalpa" }{ "label": "America/Thule -04:00", "value": "America/Thule" }{ "label": "America/Thunder_Bay -05:00", "value": "America/Thunder_Bay" }{ "label": "America/Tijuana -08:00", "value": "America/Tijuana" }{ "label": "America/Toronto -05:00", "value": "America/Toronto" }{ "label": "America/Tortola -04:00", "value": "America/Tortola" }{ "label": "America/Vancouver -08:00", "value": "America/Vancouver" }{ "label": "America/Virgin -04:00", "value": "America/Virgin" }{ "label": "America/Whitehorse -07:00", "value": "America/Whitehorse" }{ "label": "America/Winnipeg -06:00", "value": "America/Winnipeg" }{ "label": "America/Yakutat -09:00", "value": "America/Yakutat" }{ "label": "America/Yellowknife -07:00", "value": "America/Yellowknife" }{ "label": "Antarctica/Casey +08:00", "value": "Antarctica/Casey" }{ "label": "Antarctica/Davis +07:00", "value": "Antarctica/Davis" }{ "label": "Antarctica/DumontDUrville +10:00", "value": "Antarctica/DumontDUrville" }{ "label": "Antarctica/Macquarie +10:00", "value": "Antarctica/Macquarie" }{ "label": "Antarctica/Mawson +05:00", "value": "Antarctica/Mawson" }{ "label": "Antarctica/McMurdo +12:00", "value": "Antarctica/McMurdo" }{ "label": "Antarctica/Palmer -03:00", "value": "Antarctica/Palmer" }{ "label": "Antarctica/Rothera -03:00", "value": "Antarctica/Rothera" }{ "label": "Antarctica/South_Pole +12:00", "value": "Antarctica/South_Pole" }{ "label": "Antarctica/Syowa +03:00", "value": "Antarctica/Syowa" }{ "label": "Antarctica/Troll +00:00", "value": "Antarctica/Troll" }{ "label": "Antarctica/Vostok +05:00", "value": "Antarctica/Vostok" }{ "label": "Arctic/Longyearbyen +01:00", "value": "Arctic/Longyearbyen" }{ "label": "Asia/Aden +03:00", "value": "Asia/Aden" }{ "label": "Asia/Almaty +05:00", "value": "Asia/Almaty" }{ "label": "Asia/Amman +03:00", "value": "Asia/Amman" }{ "label": "Asia/Anadyr +12:00", "value": "Asia/Anadyr" }{ "label": "Asia/Aqtau +05:00", "value": "Asia/Aqtau" }{ "label": "Asia/Aqtobe +05:00", "value": "Asia/Aqtobe" }{ "label": "Asia/Ashgabat +05:00", "value": "Asia/Ashgabat" }{ "label": "Asia/Ashkhabad +05:00", "value": "Asia/Ashkhabad" }{ "label": "Asia/Atyrau +05:00", "value": "Asia/Atyrau" }{ "label": "Asia/Baghdad +03:00", "value": "Asia/Baghdad" }{ "label": "Asia/Bahrain +03:00", "value": "Asia/Bahrain" }{ "label": "Asia/Baku +04:00", "value": "Asia/Baku" }{ "label": "Asia/Bangkok +07:00", "value": "Asia/Bangkok" }{ "label": "Asia/Barnaul +07:00", "value": "Asia/Barnaul" }{ "label": "Asia/Beirut +02:00", "value": "Asia/Beirut" }{ "label": "Asia/Bishkek +06:00", "value": "Asia/Bishkek" }{ "label": "Asia/Brunei +08:00", "value": "Asia/Brunei" }{ "label": "Asia/Calcutta +05:30", "value": "Asia/Calcutta" }{ "label": "Asia/Chita +09:00", "value": "Asia/Chita" }{ "label": "Asia/Choibalsan +08:00", "value": "Asia/Choibalsan" }{ "label": "Asia/Chongqing +08:00", "value": "Asia/Chongqing" }{ "label": "Asia/Chungking +08:00", "value": "Asia/Chungking" }{ "label": "Asia/Colombo +05:30", "value": "Asia/Colombo" }{ "label": "Asia/Dacca +06:00", "value": "Asia/Dacca" }{ "label": "Asia/Damascus +03:00", "value": "Asia/Damascus" }{ "label": "Asia/Dhaka +06:00", "value": "Asia/Dhaka" }{ "label": "Asia/Dili +09:00", "value": "Asia/Dili" }{ "label": "Asia/Dubai +04:00", "value": "Asia/Dubai" }{ "label": "Asia/Dushanbe +05:00", "value": "Asia/Dushanbe" }{ "label": "Asia/Famagusta +02:00", "value": "Asia/Famagusta" }{ "label": "Asia/Gaza +02:00", "value": "Asia/Gaza" }{ "label": "Asia/Harbin +08:00", "value": "Asia/Harbin" }{ "label": "Asia/Hebron +02:00", "value": "Asia/Hebron" }{ "label": "Asia/Ho_Chi_Minh +07:00", "value": "Asia/Ho_Chi_Minh" }{ "label": "Asia/Hong_Kong +08:00", "value": "Asia/Hong_Kong" }{ "label": "Asia/Hovd +07:00", "value": "Asia/Hovd" }{ "label": "Asia/Irkutsk +08:00", "value": "Asia/Irkutsk" }{ "label": "Asia/Istanbul +03:00", "value": "Asia/Istanbul" }{ "label": "Asia/Jakarta +07:00", "value": "Asia/Jakarta" }{ "label": "Asia/Jayapura +09:00", "value": "Asia/Jayapura" }{ "label": "Asia/Jerusalem +02:00", "value": "Asia/Jerusalem" }{ "label": "Asia/Kabul +04:30", "value": "Asia/Kabul" }{ "label": "Asia/Kamchatka +12:00", "value": "Asia/Kamchatka" }{ "label": "Asia/Karachi +05:00", "value": "Asia/Karachi" }{ "label": "Asia/Kashgar +06:00", "value": "Asia/Kashgar" }{ "label": "Asia/Kathmandu +05:45", "value": "Asia/Kathmandu" }{ "label": "Asia/Katmandu +05:45", "value": "Asia/Katmandu" }{ "label": "Asia/Khandyga +09:00", "value": "Asia/Khandyga" }{ "label": "Asia/Kolkata +05:30", "value": "Asia/Kolkata" }{ "label": "Asia/Krasnoyarsk +07:00", "value": "Asia/Krasnoyarsk" }{ "label": "Asia/Kuala_Lumpur +08:00", "value": "Asia/Kuala_Lumpur" }{ "label": "Asia/Kuching +08:00", "value": "Asia/Kuching" }{ "label": "Asia/Kuwait +03:00", "value": "Asia/Kuwait" }{ "label": "Asia/Macao +08:00", "value": "Asia/Macao" }{ "label": "Asia/Macau +08:00", "value": "Asia/Macau" }{ "label": "Asia/Magadan +11:00", "value": "Asia/Magadan" }{ "label": "Asia/Makassar +08:00", "value": "Asia/Makassar" }{ "label": "Asia/Manila +08:00", "value": "Asia/Manila" }{ "label": "Asia/Muscat +04:00", "value": "Asia/Muscat" }{ "label": "Asia/Nicosia +02:00", "value": "Asia/Nicosia" }{ "label": "Asia/Novokuznetsk +07:00", "value": "Asia/Novokuznetsk" }{ "label": "Asia/Novosibirsk +07:00", "value": "Asia/Novosibirsk" }{ "label": "Asia/Omsk +06:00", "value": "Asia/Omsk" }{ "label": "Asia/Oral +05:00", "value": "Asia/Oral" }{ "label": "Asia/Phnom_Penh +07:00", "value": "Asia/Phnom_Penh" }{ "label": "Asia/Pontianak +07:00", "value": "Asia/Pontianak" }{ "label": "Asia/Pyongyang +09:00", "value": "Asia/Pyongyang" }{ "label": "Asia/Qatar +03:00", "value": "Asia/Qatar" }{ "label": "Asia/Qostanay +05:00", "value": "Asia/Qostanay" }{ "label": "Asia/Qyzylorda +05:00", "value": "Asia/Qyzylorda" }{ "label": "Asia/Rangoon +06:30", "value": "Asia/Rangoon" }{ "label": "Asia/Riyadh +03:00", "value": "Asia/Riyadh" }{ "label": "Asia/Saigon +07:00", "value": "Asia/Saigon" }{ "label": "Asia/Sakhalin +11:00", "value": "Asia/Sakhalin" }{ "label": "Asia/Samarkand +05:00", "value": "Asia/Samarkand" }{ "label": "Asia/Seoul +09:00", "value": "Asia/Seoul" }{ "label": "Asia/Shanghai +08:00", "value": "Asia/Shanghai" }{ "label": "Asia/Singapore +08:00", "value": "Asia/Singapore" }{ "label": "Asia/Srednekolymsk +11:00", "value": "Asia/Srednekolymsk" }{ "label": "Asia/Taipei +08:00", "value": "Asia/Taipei" }{ "label": "Asia/Tashkent +05:00", "value": "Asia/Tashkent" }{ "label": "Asia/Tbilisi +04:00", "value": "Asia/Tbilisi" }{ "label": "Asia/Tehran +03:30", "value": "Asia/Tehran" }{ "label": "Asia/Tel_Aviv +02:00", "value": "Asia/Tel_Aviv" }{ "label": "Asia/Thimbu +06:00", "value": "Asia/Thimbu" }{ "label": "Asia/Thimphu +06:00", "value": "Asia/Thimphu" }{ "label": "Asia/Tokyo +09:00", "value": "Asia/Tokyo" }{ "label": "Asia/Tomsk +07:00", "value": "Asia/Tomsk" }{ "label": "Asia/Ujung_Pandang +08:00", "value": "Asia/Ujung_Pandang" }{ "label": "Asia/Ulaanbaatar +08:00", "value": "Asia/Ulaanbaatar" }{ "label": "Asia/Ulan_Bator +08:00", "value": "Asia/Ulan_Bator" }{ "label": "Asia/Urumqi +06:00", "value": "Asia/Urumqi" }{ "label": "Asia/Ust-Nera +10:00", "value": "Asia/Ust-Nera" }{ "label": "Asia/Vientiane +07:00", "value": "Asia/Vientiane" }{ "label": "Asia/Vladivostok +10:00", "value": "Asia/Vladivostok" }{ "label": "Asia/Yakutsk +09:00", "value": "Asia/Yakutsk" }{ "label": "Asia/Yangon +06:30", "value": "Asia/Yangon" }{ "label": "Asia/Yekaterinburg +05:00", "value": "Asia/Yekaterinburg" }{ "label": "Asia/Yerevan +04:00", "value": "Asia/Yerevan" }{ "label": "Atlantic/Azores -01:00", "value": "Atlantic/Azores" }{ "label": "Atlantic/Bermuda -04:00", "value": "Atlantic/Bermuda" }{ "label": "Atlantic/Canary +00:00", "value": "Atlantic/Canary" }{ "label": "Atlantic/Cape_Verde -01:00", "value": "Atlantic/Cape_Verde" }{ "label": "Atlantic/Faeroe +00:00", "value": "Atlantic/Faeroe" }{ "label": "Atlantic/Faroe +00:00", "value": "Atlantic/Faroe" }{ "label": "Atlantic/Jan_Mayen +01:00", "value": "Atlantic/Jan_Mayen" }{ "label": "Atlantic/Madeira +00:00", "value": "Atlantic/Madeira" }{ "label": "Atlantic/Reykjavik +00:00", "value": "Atlantic/Reykjavik" }{ "label": "Atlantic/South_Georgia -02:00", "value": "Atlantic/South_Georgia" }{ "label": "Atlantic/St_Helena +00:00", "value": "Atlantic/St_Helena" }{ "label": "Atlantic/Stanley -03:00", "value": "Atlantic/Stanley" }{ "label": "Australia/ACT +10:00", "value": "Australia/ACT" }{ "label": "Australia/Adelaide +09:30", "value": "Australia/Adelaide" }{ "label": "Australia/Brisbane +10:00", "value": "Australia/Brisbane" }{ "label": "Australia/Broken_Hill +09:30", "value": "Australia/Broken_Hill" }{ "label": "Australia/Canberra +10:00", "value": "Australia/Canberra" }{ "label": "Australia/Currie +10:00", "value": "Australia/Currie" }{ "label": "Australia/Darwin +09:30", "value": "Australia/Darwin" }{ "label": "Australia/Eucla +08:45", "value": "Australia/Eucla" }{ "label": "Australia/Hobart +10:00", "value": "Australia/Hobart" }{ "label": "Australia/LHI +10:30", "value": "Australia/LHI" }{ "label": "Australia/Lindeman +10:00", "value": "Australia/Lindeman" }{ "label": "Australia/Lord_Howe +10:30", "value": "Australia/Lord_Howe" }{ "label": "Australia/Melbourne +10:00", "value": "Australia/Melbourne" }{ "label": "Australia/North +09:30", "value": "Australia/North" }{ "label": "Australia/NSW +10:00", "value": "Australia/NSW" }{ "label": "Australia/Perth +08:00", "value": "Australia/Perth" }{ "label": "Australia/Queensland +10:00", "value": "Australia/Queensland" }{ "label": "Australia/South +09:30", "value": "Australia/South" }{ "label": "Australia/Sydney +10:00", "value": "Australia/Sydney" }{ "label": "Australia/Tasmania +10:00", "value": "Australia/Tasmania" }{ "label": "Australia/Victoria +10:00", "value": "Australia/Victoria" }{ "label": "Australia/West +08:00", "value": "Australia/West" }{ "label": "Australia/Yancowinna +09:30", "value": "Australia/Yancowinna" }{ "label": "Brazil/Acre -05:00", "value": "Brazil/Acre" }{ "label": "Brazil/DeNoronha -02:00", "value": "Brazil/DeNoronha" }{ "label": "Brazil/East -03:00", "value": "Brazil/East" }{ "label": "Brazil/West -04:00", "value": "Brazil/West" }{ "label": "Canada/Atlantic -04:00", "value": "Canada/Atlantic" }{ "label": "Canada/Central -06:00", "value": "Canada/Central" }{ "label": "Canada/Eastern -05:00", "value": "Canada/Eastern" }{ "label": "Canada/Mountain -07:00", "value": "Canada/Mountain" }{ "label": "Canada/Newfoundland -03:30", "value": "Canada/Newfoundland" }{ "label": "Canada/Pacific -08:00", "value": "Canada/Pacific" }{ "label": "Canada/Saskatchewan -06:00", "value": "Canada/Saskatchewan" }{ "label": "Canada/Yukon -07:00", "value": "Canada/Yukon" }{ "label": "CET +01:00", "value": "CET" }{ "label": "Chile/Continental -04:00", "value": "Chile/Continental" }{ "label": "Chile/EasterIsland -06:00", "value": "Chile/EasterIsland" }{ "label": "CST6CDT -06:00", "value": "CST6CDT" }{ "label": "Cuba -05:00", "value": "Cuba" }{ "label": "EET +02:00", "value": "EET" }{ "label": "Egypt +02:00", "value": "Egypt" }{ "label": "Eire +01:00", "value": "Eire" }{ "label": "EST -05:00", "value": "EST" }{ "label": "EST5EDT -05:00", "value": "EST5EDT" }{ "label": "Etc/GMT +00:00", "value": "Etc/GMT" }{ "label": "Etc/GMT-0 +00:00", "value": "Etc/GMT-0" }{ "label": "Etc/GMT-1 +01:00", "value": "Etc/GMT-1" }{ "label": "Etc/GMT-2 +02:00", "value": "Etc/GMT-2" }{ "label": "Etc/GMT-3 +03:00", "value": "Etc/GMT-3" }{ "label": "Etc/GMT-4 +04:00", "value": "Etc/GMT-4" }{ "label": "Etc/GMT-5 +05:00", "value": "Etc/GMT-5" }{ "label": "Etc/GMT-6 +06:00", "value": "Etc/GMT-6" }{ "label": "Etc/GMT-7 +07:00", "value": "Etc/GMT-7" }{ "label": "Etc/GMT-8 +08:00", "value": "Etc/GMT-8" }{ "label": "Etc/GMT-9 +09:00", "value": "Etc/GMT-9" }{ "label": "Etc/GMT-10 +10:00", "value": "Etc/GMT-10" }{ "label": "Etc/GMT-11 +11:00", "value": "Etc/GMT-11" }{ "label": "Etc/GMT-12 +12:00", "value": "Etc/GMT-12" }{ "label": "Etc/GMT-13 +13:00", "value": "Etc/GMT-13" }{ "label": "Etc/GMT-14 +14:00", "value": "Etc/GMT-14" }{ "label": "Etc/GMT+0 +00:00", "value": "Etc/GMT+0" }{ "label": "Etc/GMT+1 -01:00", "value": "Etc/GMT+1" }{ "label": "Etc/GMT+2 -02:00", "value": "Etc/GMT+2" }{ "label": "Etc/GMT+3 -03:00", "value": "Etc/GMT+3" }{ "label": "Etc/GMT+4 -04:00", "value": "Etc/GMT+4" }{ "label": "Etc/GMT+5 -05:00", "value": "Etc/GMT+5" }{ "label": "Etc/GMT+6 -06:00", "value": "Etc/GMT+6" }{ "label": "Etc/GMT+7 -07:00", "value": "Etc/GMT+7" }{ "label": "Etc/GMT+8 -08:00", "value": "Etc/GMT+8" }{ "label": "Etc/GMT+9 -09:00", "value": "Etc/GMT+9" }{ "label": "Etc/GMT+10 -10:00", "value": "Etc/GMT+10" }{ "label": "Etc/GMT+11 -11:00", "value": "Etc/GMT+11" }{ "label": "Etc/GMT+12 -12:00", "value": "Etc/GMT+12" }{ "label": "Etc/GMT0 +00:00", "value": "Etc/GMT0" }{ "label": "Etc/Greenwich +00:00", "value": "Etc/Greenwich" }{ "label": "Etc/UCT +00:00", "value": "Etc/UCT" }{ "label": "Etc/Universal +00:00", "value": "Etc/Universal" }{ "label": "Etc/UTC +00:00", "value": "Etc/UTC" }{ "label": "Etc/Zulu +00:00", "value": "Etc/Zulu" }{ "label": "Europe/Amsterdam +01:00", "value": "Europe/Amsterdam" }{ "label": "Europe/Andorra +01:00", "value": "Europe/Andorra" }{ "label": "Europe/Astrakhan +04:00", "value": "Europe/Astrakhan" }{ "label": "Europe/Athens +02:00", "value": "Europe/Athens" }{ "label": "Europe/Belfast +00:00", "value": "Europe/Belfast" }{ "label": "Europe/Belgrade +01:00", "value": "Europe/Belgrade" }{ "label": "Europe/Berlin +01:00", "value": "Europe/Berlin" }{ "label": "Europe/Bratislava +01:00", "value": "Europe/Bratislava" }{ "label": "Europe/Brussels +01:00", "value": "Europe/Brussels" }{ "label": "Europe/Bucharest +02:00", "value": "Europe/Bucharest" }{ "label": "Europe/Budapest +01:00", "value": "Europe/Budapest" }{ "label": "Europe/Busingen +01:00", "value": "Europe/Busingen" }{ "label": "Europe/Chisinau +02:00", "value": "Europe/Chisinau" }{ "label": "Europe/Copenhagen +01:00", "value": "Europe/Copenhagen" }{ "label": "Europe/Dublin +01:00", "value": "Europe/Dublin" }{ "label": "Europe/Gibraltar +01:00", "value": "Europe/Gibraltar" }{ "label": "Europe/Guernsey +00:00", "value": "Europe/Guernsey" }{ "label": "Europe/Helsinki +02:00", "value": "Europe/Helsinki" }{ "label": "Europe/Isle_of_Man +00:00", "value": "Europe/Isle_of_Man" }{ "label": "Europe/Istanbul +03:00", "value": "Europe/Istanbul" }{ "label": "Europe/Jersey +00:00", "value": "Europe/Jersey" }{ "label": "Europe/Kaliningrad +02:00", "value": "Europe/Kaliningrad" }{ "label": "Europe/Kiev +02:00", "value": "Europe/Kiev" }{ "label": "Europe/Kirov +03:00", "value": "Europe/Kirov" }{ "label": "Europe/Kyiv +02:00", "value": "Europe/Kyiv" }{ "label": "Europe/Lisbon +00:00", "value": "Europe/Lisbon" }{ "label": "Europe/Ljubljana +01:00", "value": "Europe/Ljubljana" }{ "label": "Europe/London +00:00", "value": "Europe/London" }{ "label": "Europe/Luxembourg +01:00", "value": "Europe/Luxembourg" }{ "label": "Europe/Madrid +01:00", "value": "Europe/Madrid" }{ "label": "Europe/Malta +01:00", "value": "Europe/Malta" }{ "label": "Europe/Mariehamn +02:00", "value": "Europe/Mariehamn" }{ "label": "Europe/Minsk +03:00", "value": "Europe/Minsk" }{ "label": "Europe/Monaco +01:00", "value": "Europe/Monaco" }{ "label": "Europe/Moscow +03:00", "value": "Europe/Moscow" }{ "label": "Europe/Nicosia +02:00", "value": "Europe/Nicosia" }{ "label": "Europe/Oslo +01:00", "value": "Europe/Oslo" }{ "label": "Europe/Paris +01:00", "value": "Europe/Paris" }{ "label": "Europe/Podgorica +01:00", "value": "Europe/Podgorica" }{ "label": "Europe/Prague +01:00", "value": "Europe/Prague" }{ "label": "Europe/Riga +02:00", "value": "Europe/Riga" }{ "label": "Europe/Rome +01:00", "value": "Europe/Rome" }{ "label": "Europe/Samara +04:00", "value": "Europe/Samara" }{ "label": "Europe/San_Marino +01:00", "value": "Europe/San_Marino" }{ "label": "Europe/Sarajevo +01:00", "value": "Europe/Sarajevo" }{ "label": "Europe/Saratov +04:00", "value": "Europe/Saratov" }{ "label": "Europe/Simferopol +03:00", "value": "Europe/Simferopol" }{ "label": "Europe/Skopje +01:00", "value": "Europe/Skopje" }{ "label": "Europe/Sofia +02:00", "value": "Europe/Sofia" }{ "label": "Europe/Stockholm +01:00", "value": "Europe/Stockholm" }{ "label": "Europe/Tallinn +02:00", "value": "Europe/Tallinn" }{ "label": "Europe/Tirane +01:00", "value": "Europe/Tirane" }{ "label": "Europe/Tiraspol +02:00", "value": "Europe/Tiraspol" }{ "label": "Europe/Ulyanovsk +04:00", "value": "Europe/Ulyanovsk" }{ "label": "Europe/Uzhgorod +02:00", "value": "Europe/Uzhgorod" }{ "label": "Europe/Vaduz +01:00", "value": "Europe/Vaduz" }{ "label": "Europe/Vatican +01:00", "value": "Europe/Vatican" }{ "label": "Europe/Vienna +01:00", "value": "Europe/Vienna" }{ "label": "Europe/Vilnius +02:00", "value": "Europe/Vilnius" }{ "label": "Europe/Volgograd +03:00", "value": "Europe/Volgograd" }{ "label": "Europe/Warsaw +01:00", "value": "Europe/Warsaw" }{ "label": "Europe/Zagreb +01:00", "value": "Europe/Zagreb" }{ "label": "Europe/Zaporozhye +02:00", "value": "Europe/Zaporozhye" }{ "label": "Europe/Zurich +01:00", "value": "Europe/Zurich" }{ "label": "Factory +00:00", "value": "Factory" }{ "label": "GB +00:00", "value": "GB" }{ "label": "GB-Eire +00:00", "value": "GB-Eire" }{ "label": "GMT +00:00", "value": "GMT" }{ "label": "GMT-0 +00:00", "value": "GMT-0" }{ "label": "GMT+0 +00:00", "value": "GMT+0" }{ "label": "GMT0 +00:00", "value": "GMT0" }{ "label": "Greenwich +00:00", "value": "Greenwich" }{ "label": "Hongkong +08:00", "value": "Hongkong" }{ "label": "HST -10:00", "value": "HST" }{ "label": "Iceland +00:00", "value": "Iceland" }{ "label": "Indian/Antananarivo +03:00", "value": "Indian/Antananarivo" }{ "label": "Indian/Chagos +06:00", "value": "Indian/Chagos" }{ "label": "Indian/Christmas +07:00", "value": "Indian/Christmas" }{ "label": "Indian/Cocos +06:30", "value": "Indian/Cocos" }{ "label": "Indian/Comoro +03:00", "value": "Indian/Comoro" }{ "label": "Indian/Kerguelen +05:00", "value": "Indian/Kerguelen" }{ "label": "Indian/Mahe +04:00", "value": "Indian/Mahe" }{ "label": "Indian/Maldives +05:00", "value": "Indian/Maldives" }{ "label": "Indian/Mauritius +04:00", "value": "Indian/Mauritius" }{ "label": "Indian/Mayotte +03:00", "value": "Indian/Mayotte" }{ "label": "Indian/Reunion +04:00", "value": "Indian/Reunion" }{ "label": "Iran +03:30", "value": "Iran" }{ "label": "Israel +02:00", "value": "Israel" }{ "label": "Jamaica -05:00", "value": "Jamaica" }{ "label": "Japan +09:00", "value": "Japan" }{ "label": "Kwajalein +12:00", "value": "Kwajalein" }{ "label": "Libya +02:00", "value": "Libya" }{ "label": "MET +01:00", "value": "MET" }{ "label": "Mexico/BajaNorte -08:00", "value": "Mexico/BajaNorte" }{ "label": "Mexico/BajaSur -07:00", "value": "Mexico/BajaSur" }{ "label": "Mexico/General -06:00", "value": "Mexico/General" }{ "label": "MST -07:00", "value": "MST" }{ "label": "MST7MDT -07:00", "value": "MST7MDT" }{ "label": "Navajo -07:00", "value": "Navajo" }{ "label": "NZ +12:00", "value": "NZ" }{ "label": "NZ-CHAT +12:45", "value": "NZ-CHAT" }{ "label": "Pacific/Apia +13:00", "value": "Pacific/Apia" }{ "label": "Pacific/Auckland +12:00", "value": "Pacific/Auckland" }{ "label": "Pacific/Bougainville +11:00", "value": "Pacific/Bougainville" }{ "label": "Pacific/Chatham +12:45", "value": "Pacific/Chatham" }{ "label": "Pacific/Chuuk +10:00", "value": "Pacific/Chuuk" }{ "label": "Pacific/Easter -06:00", "value": "Pacific/Easter" }{ "label": "Pacific/Efate +11:00", "value": "Pacific/Efate" }{ "label": "Pacific/Enderbury +13:00", "value": "Pacific/Enderbury" }{ "label": "Pacific/Fakaofo +13:00", "value": "Pacific/Fakaofo" }{ "label": "Pacific/Fiji +12:00", "value": "Pacific/Fiji" }{ "label": "Pacific/Funafuti +12:00", "value": "Pacific/Funafuti" }{ "label": "Pacific/Galapagos -06:00", "value": "Pacific/Galapagos" }{ "label": "Pacific/Gambier -09:00", "value": "Pacific/Gambier" }{ "label": "Pacific/Guadalcanal +11:00", "value": "Pacific/Guadalcanal" }{ "label": "Pacific/Guam +10:00", "value": "Pacific/Guam" }{ "label": "Pacific/Honolulu -10:00", "value": "Pacific/Honolulu" }{ "label": "Pacific/Johnston -10:00", "value": "Pacific/Johnston" }{ "label": "Pacific/Kanton +13:00", "value": "Pacific/Kanton" }{ "label": "Pacific/Kiritimati +14:00", "value": "Pacific/Kiritimati" }{ "label": "Pacific/Kosrae +11:00", "value": "Pacific/Kosrae" }{ "label": "Pacific/Kwajalein +12:00", "value": "Pacific/Kwajalein" }{ "label": "Pacific/Majuro +12:00", "value": "Pacific/Majuro" }{ "label": "Pacific/Marquesas -09:30", "value": "Pacific/Marquesas" }{ "label": "Pacific/Midway -11:00", "value": "Pacific/Midway" }{ "label": "Pacific/Nauru +12:00", "value": "Pacific/Nauru" }{ "label": "Pacific/Niue -11:00", "value": "Pacific/Niue" }{ "label": "Pacific/Norfolk +11:00", "value": "Pacific/Norfolk" }{ "label": "Pacific/Noumea +11:00", "value": "Pacific/Noumea" }{ "label": "Pacific/Pago_Pago -11:00", "value": "Pacific/Pago_Pago" }{ "label": "Pacific/Palau +09:00", "value": "Pacific/Palau" }{ "label": "Pacific/Pitcairn -08:00", "value": "Pacific/Pitcairn" }{ "label": "Pacific/Pohnpei +11:00", "value": "Pacific/Pohnpei" }{ "label": "Pacific/Ponape +11:00", "value": "Pacific/Ponape" }{ "label": "Pacific/Port_Moresby +10:00", "value": "Pacific/Port_Moresby" }{ "label": "Pacific/Rarotonga -10:00", "value": "Pacific/Rarotonga" }{ "label": "Pacific/Saipan +10:00", "value": "Pacific/Saipan" }{ "label": "Pacific/Samoa -11:00", "value": "Pacific/Samoa" }{ "label": "Pacific/Tahiti -10:00", "value": "Pacific/Tahiti" }{ "label": "Pacific/Tarawa +12:00", "value": "Pacific/Tarawa" }{ "label": "Pacific/Tongatapu +13:00", "value": "Pacific/Tongatapu" }{ "label": "Pacific/Truk +10:00", "value": "Pacific/Truk" }{ "label": "Pacific/Wake +12:00", "value": "Pacific/Wake" }{ "label": "Pacific/Wallis +12:00", "value": "Pacific/Wallis" }{ "label": "Pacific/Yap +10:00", "value": "Pacific/Yap" }{ "label": "Poland +01:00", "value": "Poland" }{ "label": "Portugal +00:00", "value": "Portugal" }{ "label": "PRC +08:00", "value": "PRC" }{ "label": "PST8PDT -08:00", "value": "PST8PDT" }{ "label": "ROC +08:00", "value": "ROC" }{ "label": "ROK +09:00", "value": "ROK" }{ "label": "Singapore +08:00", "value": "Singapore" }{ "label": "Turkey +03:00", "value": "Turkey" }{ "label": "UCT +00:00", "value": "UCT" }{ "label": "Universal +00:00", "value": "Universal" }{ "label": "US/Alaska -09:00", "value": "US/Alaska" }{ "label": "US/Aleutian -10:00", "value": "US/Aleutian" }{ "label": "US/Arizona -07:00", "value": "US/Arizona" }{ "label": "US/Central -06:00", "value": "US/Central" }{ "label": "US/East-Indiana -05:00", "value": "US/East-Indiana" }{ "label": "US/Eastern -05:00", "value": "US/Eastern" }{ "label": "US/Hawaii -10:00", "value": "US/Hawaii" }{ "label": "US/Indiana-Starke -06:00", "value": "US/Indiana-Starke" }{ "label": "US/Michigan -05:00", "value": "US/Michigan" }{ "label": "US/Mountain -07:00", "value": "US/Mountain" }{ "label": "US/Pacific -08:00", "value": "US/Pacific" }{ "label": "US/Samoa -11:00", "value": "US/Samoa" }{ "label": "UTC +00:00", "value": "UTC" }{ "label": "W-SU +03:00", "value": "W-SU" }{ "label": "WET +00:00", "value": "WET" }{ "label": "Zulu +00:00", "value": "Zulu" }
Durationdurationinteger

Duration in minutes.

Auto RecordautoRecordstringSelect a value from the drop down menu:noneaudiovideo
Auto StreamautoStreamstringSelect a value from the drop down menu:noneaudiovideo
Auto TranscribeautoTranscribeboolean

Whether the recording should automatically be transcribed. Valid values are true or false. If omitted will default to false.

One Time Access CodeoneTimeAccessCodeboolean

When set to true an access code will be returned in the response.

Secure URLsecureUrlboolean

When set to true the room_url will contain an encrypted access code. Best when used with one_time_access_code.

Host Initiated RecordinghostInitiatedRecordingboolean

Providing this parameter will change the trigger for automatically starting recording or streaming to also include the host joining the call.

Security PinsecurityPinstring

Pin required to access the conference.

Mute ModemuteModestringSelect a value from the drop down menu:{ "label": "Default, all unmuted", "value": "conversation" }{ "label": "Participants muted, but can unmute", "value": "q&a" }{ "label": "Participants muted and can not unmute", "value": "presentation" }
Contact Idsparticipantsstring[]Select a value from the drop down menu.
Participant EmailsparticipantEmailsstring[]

Alternatively participants can be listed via emails with moderators specified. If a participant’s emails is not on the host’s contact list, it will be added.

Action Authentication

Vivomeetings uses OAuth authentication. When you connect your Vivomeetings account, Pipedream will open a popup window where you can sign into Vivomeetings and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Vivomeetings API.

Pipedream requests the following authorization scopes when you connect your account:

readwrite

About Vivomeetings

Vivomeetings plan comes with unlimited recordings, real-time transcription, webinar mode and so much more.

More Ways to Connect Vivomeetings + Supabase

Get Conference Recordings with Vivomeetings API on New Row Added from Supabase API
Supabase + Vivomeetings
 
Try it
Get Conference Recordings with Vivomeetings API on New Webhook Event (Instant) from Supabase API
Supabase + Vivomeetings
 
Try it
Create Conference with Vivomeetings API on New Webhook Event (Instant) from Supabase API
Supabase + Vivomeetings
 
Try it
Update Conference with Vivomeetings API on New Row Added from Supabase API
Supabase + Vivomeetings
 
Try it
Update Conference with Vivomeetings API on New Webhook Event (Instant) from Supabase API
Supabase + Vivomeetings
 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
New VivoMeeting or Webinar Created from the Vivomeetings API

Emit new event when a new VivoMeeting or webinar is created. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it
Select Row with the Supabase API

Selects row(s) in a database. See the docs here

 
Try it
Update Row with the Supabase API

Updates row(s) in a database. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,200+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.