← Zoom + Salesforce integrations

Create User with Salesforce API on Custom Events (Instant) from Zoom API

Pipedream makes it easy to connect APIs for Salesforce, Zoom and 2,500+ other apps remarkably fast.

Trigger workflow on
Custom Events (Instant) from the Zoom API
Next, do this
Create User with the Salesforce 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 Zoom trigger and Salesforce 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 Custom Events (Instant) trigger
    1. Connect your Zoom account
    2. Select one or more Zoom Events
    3. Configure apphook
  3. Configure the Create User action
    1. Connect your Salesforce account
    2. Configure docsInfo
    3. Configure Alias
    4. Configure Nickname
    5. Select a Chatter Email Highlights Frequency
    6. Configure Email
    7. Select a Email Encoding
    8. Select a Language
    9. Configure Last Name
    10. Select a Locale
    11. Select a Profile ID
    12. Select a Time Zone
    13. Configure Username
    14. Configure Marketing User
    15. Configure Offline User
    16. Optional- Configure See All Props
  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 events tied to your Zoom user or resources you own
Version:0.1.3
Key:zoom-custom-event

Zoom Overview

The Zoom API lets you tap into a rich set of functionalities to enhance the video conferencing experience within your own app or workflow. With the Zoom API on Pipedream, you can automatically create meetings, manage users, send meeting notifications, and more, orchestrating these actions within a broader automation. This allows for seamless integration with other services, enabling both data collection and action triggers based on Zoom events.

Pipedream workflows allow you to run any Node.js code that connects to the Zoom API. Just create a new workflow, then add prebuilt Zoom actions (create a meeting, send a chat message, etc.) or write your own code. These workflows can be triggered by HTTP requests, timers, email, or on any app-based event (new tweets, a Github PR, Zoom events, etc).

Trigger Code

import common from "../common/common.mjs";
import constants from "../common/constants.mjs";

export default {
  ...common,
  key: "zoom-custom-event",
  name: "Custom Events (Instant)",
  description: "Emit new events tied to your Zoom user or resources you own",
  version: "0.1.3",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    eventNameOptions: {
      type: "string[]",
      label: "Zoom Events",
      description: "Select the events you want to listen for",
      options: Object.values(constants.CUSTOM_EVENT_TYPES),
    },
    // eslint-disable-next-line pipedream/props-label, pipedream/props-description
    apphook: {
      type: "$.interface.apphook",
      appProp: "app",
      eventNames() {
        return this.eventNameOptions;
      },
    },
  },
  async run(event) {
    this.$emit(event, {
      id: event.payload?.object?.id,
      summary: event.event,
      ts: Date.now(),
    });
  },
};

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
ZoomappappThis component uses the Zoom app.
Zoom EventseventNameOptionsstring[]Select a value from the drop down menu:meeting.alertmeeting.created.by_memeeting.created.for_memeeting.updatedmeeting.deleted.by_memeeting.deleted.for_memeeting.startedmeeting.endedmeeting.registration_createdmeeting.registration_approvedmeeting.registration_cancelledmeeting.registration_deniedmeeting.sharing_started.hostmeeting.sharing_started.participantmeeting.sharing_ended.hostmeeting.sharing_ended.participantmeeting.participant_jbh_joinedmeeting.participant_jbh_waitingmeeting.participant_joinedmeeting.participant_leftmeeting.participant_joined_waiting_roommeeting.participant_admittedmeeting.participant_put_in_waiting_roommeeting.participant_left_waiting_roomrecording.startedrecording.pausedrecording.resumedrecording.stoppedrecording.completedrecording.trashed.by_merecording.trashed.for_merecording.deleted.by_merecording.deleted.for_merecording.recovered.by_merecording.recovered.for_merecording.transcript_completedrecording.registration_createdrecording.registration_approvedrecording.registration_denieduser.updateduser.settings_updateduser.signed_inuser.signed_outwebinar.created.by_mewebinar.created.for_mewebinar.updatedwebinar.startedwebinar.endedwebinar.alertwebinar.sharing_started.hostwebinar.sharing_started.participantwebinar.sharing_endedwebinar.registration_createdwebinar.registration_approvedwebinar.registration_deniedwebinar.registration_cancelledwebinar.participant_joinedwebinar.participant_leftwebinar.deleted.by_mewebinar.deleted.for_me
apphook$.interface.apphook

Trigger Authentication

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

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

About Zoom

Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars.

Action

Description:Creates a Salesforce user. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_user.htm)
Version:0.1.1
Key:salesforce_rest_api-create-user

Salesforce Overview

The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.

Action Code

import common, { getProps } from "../common/base-create-update.mjs";
import user from "../../common/sobjects/user.mjs";

const docsLink =
  "https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_user.htm";

export default {
  ...common,
  key: "salesforce_rest_api-create-user",
  name: "Create User",
  description: `Creates a Salesforce user. [See the documentation](${docsLink})`,
  version: "0.1.1",
  type: "action",
  methods: {
    ...common.methods,
    getObjectType() {
      return "User";
    },
    getAdvancedProps() {
      return user.extraProps;
    },
  },
  props: getProps({
    objType: user,
    docsLink,
  }),
  async run({ $ }) {
    /* eslint-disable no-unused-vars */
    const {
      salesforce,
      getAdvancedProps,
      getObjectType,
      getAdditionalFields,
      formatDateTimeProps,
      useAdvancedProps,
      docsInfo,
      dateInfo,
      additionalFields,
      ...data
    } = this;
    /* eslint-enable no-unused-vars */
    const response = await salesforce.createRecord("User", {
      $,
      data: {
        ...data,
        ...getAdditionalFields(),
      },
    });
    $.export("$summary", `Successfully created user (ID: ${response.id})`);
    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
SalesforcesalesforceappThis component uses the Salesforce app.
AliasAliasstring

The user's alias (max 8 characters).

NicknameCommunityNicknamestring

Name used to identify this user in the Experience Cloud site.

Chatter Email Highlights FrequencyDigestFrequencystringSelect a value from the drop down menu:{ "label": "Daily", "value": "D" }{ "label": "Weekly", "value": "W" }{ "label": "Never", "value": "N" }
EmailEmailstring

The user's email address.

Email EncodingEmailEncodingKeystringSelect a value from the drop down menu:{ "label": "Unicode (UTF-8)", "value": "UTF-8" }{ "label": "General US & Western Europe (ISO-8859-1, ISO-LATIN-1)", "value": "ISO-8859-1" }{ "label": "Japanese (Shift-JIS)", "value": "Shift_JIS" }{ "label": "Japanese (JIS)", "value": "ISO-2022-JP" }{ "label": "Japanese (EUC)", "value": "EUC-JP" }{ "label": "Korean (ks_c_5601-1987)", "value": "ks_c_5601-1987" }{ "label": "Traditional Chinese (Big5)", "value": "Big5" }{ "label": "Simplified Chinese (GB2312)", "value": "GB2312" }{ "label": "Traditional Chinese Hong Kong (Big5-HKSCS)", "value": "Big5-HKSCS" }{ "label": "Japanese (Shift-JIS_2004)", "value": "x-SJIS_0213" }
LanguageLanguageLocaleKeystringSelect a value from the drop down menu:{ "label": "English", "value": "en_US" }{ "label": "German", "value": "de" }{ "label": "Spanish", "value": "es" }{ "label": "French", "value": "fr" }{ "label": "Italian", "value": "it" }{ "label": "Japanese", "value": "ja" }{ "label": "Swedish", "value": "sv" }{ "label": "Korean", "value": "ko" }{ "label": "Chinese (Traditional)", "value": "zh_TW" }{ "label": "Chinese (Simplified)", "value": "zh_CN" }{ "label": "Portuguese (Brazil)", "value": "pt_BR" }{ "label": "Dutch", "value": "nl_NL" }{ "label": "Danish", "value": "da" }{ "label": "Thai", "value": "th" }{ "label": "Finnish", "value": "fi" }{ "label": "Russian", "value": "ru" }{ "label": "Spanish (Mexico)", "value": "es_MX" }{ "label": "Norwegian", "value": "no" }
Last NameLastNamestring

The user's last name.

LocaleLocaleSidKeystringSelect a value from the drop down menu:{ "label": "Afrikaans (South Africa)", "value": "af_ZA" }{ "label": "Albanian (Albania)", "value": "sq_AL" }{ "label": "Arabic (Algeria)", "value": "ar_DZ" }{ "label": "Arabic (Bahrain)", "value": "ar_BH" }{ "label": "Arabic (Egypt)", "value": "ar_EG" }{ "label": "Arabic (Iraq)", "value": "ar_IQ" }{ "label": "Arabic (Jordan)", "value": "ar_JO" }{ "label": "Arabic (Kuwait)", "value": "ar_KW" }{ "label": "Arabic (Lebanon)", "value": "ar_LB" }{ "label": "Arabic (Libya)", "value": "ar_LY" }{ "label": "Arabic (Morocco)", "value": "ar_MA" }{ "label": "Arabic (Oman)", "value": "ar_OM" }{ "label": "Arabic (Qatar)", "value": "ar_QA" }{ "label": "Arabic (Saudi Arabia)", "value": "ar_SA" }{ "label": "Arabic (Sudan)", "value": "ar_SD" }{ "label": "Arabic (Tunisia)", "value": "ar_TN" }{ "label": "Arabic (United Arab Emirates)", "value": "ar_AE" }{ "label": "Arabic (Yemen)", "value": "ar_YE" }{ "label": "Armenian (Armenia)", "value": "hy_AM" }{ "label": "Azerbaijani (Azerbaijan)", "value": "az_AZ" }{ "label": "Bangla (Bangladesh)", "value": "bn_BD" }{ "label": "Bangla (India)", "value": "bn_IN" }{ "label": "Basque (Spain)", "value": "eu_ES" }{ "label": "Belarusian (Belarus)", "value": "be_BY" }{ "label": "Bosnian (Bosnia & Herzegovina)", "value": "bs_BA" }{ "label": "Bulgarian (Bulgaria)", "value": "bg_BG" }{ "label": "Burmese (Myanmar [Burma])", "value": "my_MM" }{ "label": "Catalan (Spain)", "value": "ca_ES" }{ "label": "Chinese (China, Pinyin Ordering)", "value": "zh_CN_PINYIN" }{ "label": "Chinese (China, Stroke Ordering)", "value": "zh_CN_STROKE" }{ "label": "Chinese (China)", "value": "zh_CN" }{ "label": "Chinese (Hong Kong SAR China, Stroke Ordering)", "value": "zh_HK_STROKE" }{ "label": "Chinese (Hong Kong SAR China)", "value": "zh_HK" }{ "label": "Chinese (Macao SAR China)", "value": "zh_MO" }{ "label": "Chinese (Singapore)", "value": "zh_SG" }{ "label": "Chinese (Taiwan, Stroke Ordering)", "value": "zh_TW_STROKE" }{ "label": "Chinese (Taiwan)", "value": "zh_TW" }{ "label": "Croatian (Croatia)", "value": "hr_HR" }{ "label": "Czech (Czechia)", "value": "cs_CZ" }{ "label": "Danish (Denmark)", "value": "da_DK" }{ "label": "Dutch (Aruba)", "value": "nl_AW" }{ "label": "Dutch (Belgium)", "value": "nl_BE" }{ "label": "Dutch (Netherlands)", "value": "nl_NL" }{ "label": "Dutch (Suriname)", "value": "nl_SR" }{ "label": "Dzongkha (Bhutan)", "value": "dz_BT" }{ "label": "English (Antigua & Barbuda)", "value": "en_AG" }{ "label": "English (Australia)", "value": "en_AU" }{ "label": "English (Bahamas)", "value": "en_BS" }{ "label": "English (Barbados)", "value": "en_BB" }{ "label": "English (Belize)", "value": "en_BZ" }{ "label": "English (Bermuda)", "value": "en_BM" }{ "label": "English (Botswana)", "value": "en_BW" }{ "label": "English (Cameroon)", "value": "en_CM" }{ "label": "English (Canada)", "value": "en_CA" }{ "label": "English (Cayman Islands)", "value": "en_KY" }{ "label": "English (Eritrea)", "value": "en_ER" }{ "label": "English (Eswatini)", "value": "en_SZ" }{ "label": "English (Falkland Islands)", "value": "en_FK" }{ "label": "English (Fiji)", "value": "en_FJ" }{ "label": "English (Gambia)", "value": "en_GM" }{ "label": "English (Ghana)", "value": "en_GH" }{ "label": "English (Gibraltar)", "value": "en_GI" }{ "label": "English (Guyana)", "value": "en_GY" }{ "label": "English (Hong Kong SAR China)", "value": "en_HK" }{ "label": "English (India)", "value": "en_IN" }{ "label": "English (Indonesia)", "value": "en_ID" }{ "label": "English (Ireland)", "value": "en_IE" }{ "label": "English (Jamaica)", "value": "en_JM" }{ "label": "English (Kenya)", "value": "en_KE" }{ "label": "English (Liberia)", "value": "en_LR" }{ "label": "English (Madagascar)", "value": "en_MG" }{ "label": "English (Malawi)", "value": "en_MW" }{ "label": "English (Malaysia)", "value": "en_MY" }{ "label": "English (Mauritius)", "value": "en_MU" }{ "label": "English (Namibia)", "value": "en_NA" }{ "label": "English (New Zealand)", "value": "en_NZ" }{ "label": "English (Nigeria)", "value": "en_NG" }{ "label": "English (Pakistan)", "value": "en_PK" }{ "label": "English (Papua New Guinea)", "value": "en_PG" }{ "label": "English (Philippines)", "value": "en_PH" }{ "label": "English (Rwanda)", "value": "en_RW" }{ "label": "English (Samoa)", "value": "en_WS" }{ "label": "English (Seychelles)", "value": "en_SC" }{ "label": "English (Sierra Leone)", "value": "en_SL" }{ "label": "English (Singapore)", "value": "en_SG" }{ "label": "English (Sint Maarten)", "value": "en_SX" }{ "label": "English (Solomon Islands)", "value": "en_SB" }{ "label": "English (South Africa)", "value": "en_ZA" }{ "label": "English (St. Helena)", "value": "en_SH" }{ "label": "English (Tanzania)", "value": "en_TZ" }{ "label": "English (Tonga)", "value": "en_TO" }{ "label": "English (Trinidad & Tobago)", "value": "en_TT" }{ "label": "English (Uganda)", "value": "en_UG" }{ "label": "English (United Kingdom)", "value": "en_GB" }{ "label": "English (United States)", "value": "en_US" }{ "label": "English (Vanuatu)", "value": "en_VU" }{ "label": "Estonian (Estonia)", "value": "et_EE" }{ "label": "Finnish (Finland)", "value": "fi_FI" }{ "label": "French (Belgium)", "value": "fr_BE" }{ "label": "French (Canada)", "value": "fr_CA" }{ "label": "French (Comoros)", "value": "fr_KM" }{ "label": "French (France)", "value": "fr_FR" }{ "label": "French (Guinea)", "value": "fr_GN" }{ "label": "French (Haiti)", "value": "fr_HT" }{ "label": "French (Luxembourg)", "value": "fr_LU" }{ "label": "French (Mauritania)", "value": "fr_MR" }{ "label": "French (Monaco)", "value": "fr_MC" }{ "label": "French (Switzerland)", "value": "fr_CH" }{ "label": "French (Wallis & Futuna)", "value": "fr_WF" }{ "label": "Georgian (Georgia)", "value": "ka_GE" }{ "label": "German (Austria)", "value": "de_AT" }{ "label": "German (Belgium)", "value": "de_BE" }{ "label": "German (Germany)", "value": "de_DE" }{ "label": "German (Luxembourg)", "value": "de_LU" }{ "label": "German (Switzerland)", "value": "de_CH" }{ "label": "Greek (Greece)", "value": "el_GR" }{ "label": "Gujarati (India)", "value": "gu_IN" }{ "label": "Hebrew (Israel)", "value": "iw_IL" }{ "label": "Hindi (India)", "value": "hi_IN" }{ "label": "Hungarian (Hungary)", "value": "hu_HU" }{ "label": "Icelandic (Iceland)", "value": "is_IS" }{ "label": "Indonesian (Indonesia)", "value": "in_ID" }{ "label": "Irish (Ireland)", "value": "ga_IE" }{ "label": "Italian (Italy)", "value": "it_IT" }{ "label": "Italian (Switzerland)", "value": "it_CH" }{ "label": "Japanese (Japan)", "value": "ja_JP" }{ "label": "Kannada (India)", "value": "kn_IN" }{ "label": "Kazakh (Kazakhstan)", "value": "kk_KZ" }{ "label": "Khmer (Cambodia)", "value": "km_KH" }{ "label": "Korean (South Korea)", "value": "ko_KR" }{ "label": "Kyrgyz (Kyrgyzstan)", "value": "ky_KG" }{ "label": "Lao (Laos)", "value": "lo_LA" }{ "label": "Latvian (Latvia)", "value": "lv_LV" }{ "label": "Lithuanian (Lithuania)", "value": "lt_LT" }{ "label": "Luba-Katanga (Congo - Kinshasa)", "value": "lu_CD" }{ "label": "Luxembourgish (Luxembourg)", "value": "lb_LU" }{ "label": "Macedonian (North Macedonia)", "value": "mk_MK" }{ "label": "Malay (Brunei)", "value": "ms_BN" }{ "label": "Malay (Malaysia)", "value": "ms_MY" }{ "label": "Malayalam (India)", "value": "ml_IN" }{ "label": "Maltese (Malta)", "value": "mt_MT" }{ "label": "Marathi (India)", "value": "mr_IN" }{ "label": "Montenegrin (Montenegro, USD)", "value": "sh_ME_USD" }{ "label": "Montenegrin (Montenegro)", "value": "sh_ME" }{ "label": "Nepali (Nepal)", "value": "ne_NP" }{ "label": "Norwegian (Norway)", "value": "no_NO" }{ "label": "Pashto (Afghanistan)", "value": "ps_AF" }{ "label": "Polish (Poland)", "value": "pl_PL" }{ "label": "Portuguese (Angola)", "value": "pt_AO" }{ "label": "Portuguese (Brazil)", "value": "pt_BR" }{ "label": "Portuguese (Cape Verde)", "value": "pt_CV" }{ "label": "Portuguese (Mozambique)", "value": "pt_MZ" }{ "label": "Portuguese (Portugal)", "value": "pt_PT" }{ "label": "Portuguese (São Tomé & Príncipe)", "value": "pt_ST" }{ "label": "Romanian (Moldova)", "value": "ro_MD" }{ "label": "Romanian (Romania)", "value": "ro_RO" }{ "label": "Romansh (Switzerland)", "value": "rm_CH" }{ "label": "Rundi (Burundi)", "value": "rn_BI" }{ "label": "Russian (Kazakhstan)", "value": "ru_KZ" }{ "label": "Russian (Russia)", "value": "ru_RU" }{ "label": "Serbian (Cyrillic) (Bosnia and Herzegovina)", "value": "sr_BA" }{ "label": "Serbian (Cyrillic) (Serbia)", "value": "sr_CS" }{ "label": "Serbian (Latin) (Bosnia and Herzegovina)", "value": "sh_BA" }{ "label": "Serbian (Latin) (Serbia)", "value": "sh_CS" }{ "label": "Serbian (Serbia)", "value": "sr_RS" }{ "label": "Slovak (Slovakia)", "value": "sk_SK" }{ "label": "Slovenian (Slovenia)", "value": "sl_SI" }{ "label": "Somali (Djibouti)", "value": "so_DJ" }{ "label": "Somali (Somalia)", "value": "so_SO" }{ "label": "Spanish (Argentina)", "value": "es_AR" }{ "label": "Spanish (Bolivia)", "value": "es_BO" }{ "label": "Spanish (Chile)", "value": "es_CL" }{ "label": "Spanish (Colombia)", "value": "es_CO" }{ "label": "Spanish (Costa Rica)", "value": "es_CR" }{ "label": "Spanish (Dominican Republic)", "value": "es_DO" }{ "label": "Spanish (Ecuador)", "value": "es_EC" }{ "label": "Spanish (El Salvador)", "value": "es_SV" }{ "label": "Spanish (Guatemala)", "value": "es_GT" }{ "label": "Spanish (Honduras)", "value": "es_HN" }{ "label": "Spanish (Mexico)", "value": "es_MX" }{ "label": "Spanish (Nicaragua)", "value": "es_NI" }{ "label": "Spanish (Panama)", "value": "es_PA" }{ "label": "Spanish (Paraguay)", "value": "es_PY" }{ "label": "Spanish (Peru)", "value": "es_PE" }{ "label": "Spanish (Puerto Rico)", "value": "es_PR" }{ "label": "Spanish (Spain)", "value": "es_ES" }{ "label": "Spanish (United States)", "value": "es_US" }{ "label": "Spanish (Uruguay)", "value": "es_UY" }{ "label": "Spanish (Venezuela)", "value": "es_VE" }{ "label": "Swahili (Kenya)", "value": "sw_KE" }{ "label": "Swedish (Sweden)", "value": "sv_SE" }{ "label": "Tagalog (Philippines)", "value": "tl_PH" }{ "label": "Tajik (Tajikistan)", "value": "tg_TJ" }{ "label": "Tamil (India)", "value": "ta_IN" }{ "label": "Tamil (Sri Lanka)", "value": "ta_LK" }{ "label": "Telugu (India)", "value": "te_IN" }{ "label": "Te reo (New Zealand)", "value": "mi_NZ" }{ "label": "Thai (Thailand)", "value": "th_TH" }{ "label": "Tigrinya (Ethiopia)", "value": "ti_ET" }{ "label": "Turkish (Türkiye)", "value": "tr_TR" }{ "label": "Ukrainian (Ukraine)", "value": "uk_UA" }{ "label": "Urdu (Pakistan)", "value": "ur_PK" }{ "label": "Uzbek (Latin, Uzbekistan)", "value": "uz_LATN_UZ" }{ "label": "Vietnamese (Vietnam)", "value": "vi_VN" }{ "label": "Welsh (United Kingdom)", "value": "cy_GB" }{ "label": "Xhosa (South Africa)", "value": "xh_ZA" }{ "label": "Yoruba (Benin)", "value": "yo_BJ" }{ "label": "Zulu (South Africa)", "value": "zu_ZA" }
Profile IDProfileIdstringSelect a value from the drop down menu.
Time ZoneTimeZoneSidKeystringSelect a value from the drop down menu:{ "label": "(GMT+14:00) Line Islands Time (Pacific/Kiritimati)", "value": "Pacific/Kiritimati" }{ "label": "(GMT+13:00) Phoenix Islands Time (Pacific/Enderbury)", "value": "Pacific/Enderbury" }{ "label": "(GMT+13:00) Tonga Standard Time (Pacific/Tongatapu)", "value": "Pacific/Tongatapu" }{ "label": "(GMT+12:45) Chatham Standard Time (Pacific/Chatham)", "value": "Pacific/Chatham" }{ "label": "(GMT+12:00) Petropavlovsk-Kamchatski Standard Time (Asia/Kamchatka)", "value": "Asia/Kamchatka" }{ "label": "(GMT+12:00) New Zealand Standard Time (Pacific/Auckland)", "value": "Pacific/Auckland" }{ "label": "(GMT+12:00) Fiji Standard Time (Pacific/Fiji)", "value": "Pacific/Fiji" }{ "label": "(GMT+11:00) Solomon Islands Time (Pacific/Guadalcanal)", "value": "Pacific/Guadalcanal" }{ "label": "(GMT+11:00) Norfolk Island Standard Time (Pacific/Norfolk)", "value": "Pacific/Norfolk" }{ "label": "(GMT+10:30) Lord Howe Standard Time (Australia/Lord_Howe)", "value": "Australia/Lord_Howe" }{ "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Brisbane)", "value": "Australia/Brisbane" }{ "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Sydney)", "value": "Australia/Sydney" }{ "label": "(GMT+09:30) Australian Central Standard Time (Australia/Adelaide)", "value": "Australia/Adelaide" }{ "label": "(GMT+09:30) Australian Central Standard Time (Australia/Darwin)", "value": "Australia/Darwin" }{ "label": "(GMT+09:00) Korean Standard Time (Asia/Seoul)", "value": "Asia/Seoul" }{ "label": "(GMT+09:00) Japan Standard Time (Asia/Tokyo)", "value": "Asia/Tokyo" }{ "label": "(GMT+08:00) Hong Kong Standard Time (Asia/Hong_Kong)", "value": "Asia/Hong_Kong" }{ "label": "(GMT+08:00) Malaysia Time (Asia/Kuala_Lumpur)", "value": "Asia/Kuala_Lumpur" }{ "label": "(GMT+08:00) Philippine Standard Time (Asia/Manila)", "value": "Asia/Manila" }{ "label": "(GMT+08:00) China Standard Time (Asia/Shanghai)", "value": "Asia/Shanghai" }{ "label": "(GMT+08:00) Singapore Standard Time (Asia/Singapore)", "value": "Asia/Singapore" }{ "label": "(GMT+08:00) Taipei Standard Time (Asia/Taipei)", "value": "Asia/Taipei" }{ "label": "(GMT+08:00) Australian Western Standard Time (Australia/Perth)", "value": "Australia/Perth" }{ "label": "(GMT+07:00) Indochina Time (Asia/Bangkok)", "value": "Asia/Bangkok" }{ "label": "(GMT+07:00) Indochina Time (Asia/Ho_Chi_Minh)", "value": "Asia/Ho_Chi_Minh" }{ "label": "(GMT+07:00) Western Indonesia Time (Asia/Jakarta)", "value": "Asia/Jakarta" }{ "label": "(GMT+06:30) Myanmar Time (Asia/Rangoon)", "value": "Asia/Rangoon" }{ "label": "(GMT+06:00) Bangladesh Standard Time (Asia/Dhaka)", "value": "Asia/Dhaka" }{ "label": "(GMT+05:45) Nepal Time (Asia/Kathmandu)", "value": "Asia/Kathmandu" }{ "label": "(GMT+05:30) India Standard Time (Asia/Colombo)", "value": "Asia/Colombo" }{ "label": "(GMT+05:30) India Standard Time (Asia/Kolkata)", "value": "Asia/Kolkata" }{ "label": "(GMT+05:00) Pakistan Standard Time (Asia/Karachi)", "value": "Asia/Karachi" }{ "label": "(GMT+05:00) Uzbekistan Standard Time (Asia/Tashkent)", "value": "Asia/Tashkent" }{ "label": "(GMT+05:00) Yekaterinburg Standard Time (Asia/Yekaterinburg)", "value": "Asia/Yekaterinburg" }{ "label": "(GMT+04:30) Afghanistan Time (Asia/Kabul)", "value": "Asia/Kabul" }{ "label": "(GMT+04:00) Azerbaijan Standard Time (Asia/Baku)", "value": "Asia/Baku" }{ "label": "(GMT+04:00) Gulf Standard Time (Asia/Dubai)", "value": "Asia/Dubai" }{ "label": "(GMT+04:00) Georgia Standard Time (Asia/Tbilisi)", "value": "Asia/Tbilisi" }{ "label": "(GMT+04:00) Armenia Standard Time (Asia/Yerevan)", "value": "Asia/Yerevan" }{ "label": "(GMT+03:00) Eastern European Standard Time (Africa/Cairo)", "value": "Africa/Cairo" }{ "label": "(GMT+03:00) East Africa Time (Africa/Nairobi)", "value": "Africa/Nairobi" }{ "label": "(GMT+03:00) Arabian Standard Time (Asia/Baghdad)", "value": "Asia/Baghdad" }{ "label": "(GMT+03:00) Eastern European Summer Time (Asia/Beirut)", "value": "Asia/Beirut" }{ "label": "(GMT+03:00) Israel Daylight Time (Asia/Jerusalem)", "value": "Asia/Jerusalem" }{ "label": "(GMT+03:00) Arabian Standard Time (Asia/Kuwait)", "value": "Asia/Kuwait" }{ "label": "(GMT+03:00) Arabian Standard Time (Asia/Riyadh)", "value": "Asia/Riyadh" }{ "label": "(GMT+03:00) Eastern European Summer Time (Europe/Athens)", "value": "Europe/Athens" }{ "label": "(GMT+03:00) Eastern European Summer Time (Europe/Bucharest)", "value": "Europe/Bucharest" }{ "label": "(GMT+03:00) Eastern European Summer Time (Europe/Helsinki)", "value": "Europe/Helsinki" }{ "label": "(GMT+03:00) Eastern European Standard Time (Europe/Istanbul)", "value": "Europe/Istanbul" }{ "label": "(GMT+03:00) Moscow Standard Time (Europe/Minsk)", "value": "Europe/Minsk" }{ "label": "(GMT+03:00) Moscow Standard Time (Europe/Moscow)", "value": "Europe/Moscow" }{ "label": "(GMT+02:00) South Africa Standard Time (Africa/Johannesburg)", "value": "Africa/Johannesburg" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Amsterdam)", "value": "Europe/Amsterdam" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Berlin)", "value": "Europe/Berlin" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Brussels)", "value": "Europe/Brussels" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Paris)", "value": "Europe/Paris" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Prague)", "value": "Europe/Prague" }{ "label": "(GMT+02:00) Central European Summer Time (Europe/Rome)", "value": "Europe/Rome" }{ "label": "(GMT+01:00) Central European Standard Time (Africa/Algiers)", "value": "Africa/Algiers" }{ "label": "(GMT+01:00) Western European Summer Time (Africa/Casablanca)", "value": "Africa/Casablanca" }{ "label": "(GMT+01:00) Irish Standard Time (Europe/Dublin)", "value": "Europe/Dublin" }{ "label": "(GMT+01:00) Western European Summer Time (Europe/Lisbon)", "value": "Europe/Lisbon" }{ "label": "(GMT+01:00) British Summer Time (Europe/London)", "value": "Europe/London" }{ "label": "(GMT+00:00) Azores Summer Time (Atlantic/Azores)", "value": "Atlantic/Azores" }{ "label": "(GMT+00:00) Greenwich Mean Time (GMT)", "value": "GMT" }{ "label": "(GMT-01:00) East Greenland Summer Time (America/Scoresbysund)", "value": "America/Scoresbysund" }{ "label": "(GMT-01:00) Cape Verde Standard Time (Atlantic/Cape_Verde)", "value": "Atlantic/Cape_Verde" }{ "label": "(GMT-02:00) South Georgia Time (Atlantic/South_Georgia)", "value": "Atlantic/South_Georgia" }{ "label": "(GMT-02:30) Newfoundland Daylight Time (America/St_Johns)", "value": "America/St_Johns" }{ "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Buenos_Aires)", "value": "America/Argentina/Buenos_Aires" }{ "label": "(GMT-03:00) Atlantic Daylight Time (America/Halifax)", "value": "America/Halifax" }{ "label": "(GMT-03:00) Brasilia Standard Time (America/Sao_Paulo)", "value": "America/Sao_Paulo" }{ "label": "(GMT-03:00) Atlantic Daylight Time (Atlantic/Bermuda)", "value": "Atlantic/Bermuda" }{ "label": "(GMT-04:00) Venezuela Time (America/Caracas)", "value": "America/Caracas" }{ "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Indianapolis)", "value": "America/Indiana/Indianapolis" }{ "label": "(GMT-04:00) Eastern Daylight Time (America/New_York)", "value": "America/New_York" }{ "label": "(GMT-04:00) Atlantic Standard Time (America/Puerto_Rico)", "value": "America/Puerto_Rico" }{ "label": "(GMT-04:00) Chile Standard Time (America/Santiago)", "value": "America/Santiago" }{ "label": "(GMT-05:00) Colombia Standard Time (America/Bogota)", "value": "America/Bogota" }{ "label": "(GMT-05:00) Central Daylight Time (America/Chicago)", "value": "America/Chicago" }{ "label": "(GMT-05:00) Peru Standard Time (America/Lima)", "value": "America/Lima" }{ "label": "(GMT-05:00) Eastern Standard Time (America/Panama)", "value": "America/Panama" }{ "label": "(GMT-06:00) Mountain Daylight Time (America/Denver)", "value": "America/Denver" }{ "label": "(GMT-06:00) Central Standard Time (America/El_Salvador)", "value": "America/El_Salvador" }{ "label": "(GMT-06:00) Central Standard Time (America/Mexico_City)", "value": "America/Mexico_City" }{ "label": "(GMT-07:00) Pacific Daylight Time (America/Los_Angeles)", "value": "America/Los_Angeles" }{ "label": "(GMT-07:00) Mexican Pacific Standard Time (America/Mazatlan)", "value": "America/Mazatlan" }{ "label": "(GMT-07:00) Mountain Standard Time (America/Phoenix)", "value": "America/Phoenix" }{ "label": "(GMT-07:00) Pacific Daylight Time (America/Tijuana)", "value": "America/Tijuana" }{ "label": "(GMT-08:00) Alaska Daylight Time (America/Anchorage)", "value": "America/Anchorage" }{ "label": "(GMT-08:00) Pitcairn Time (Pacific/Pitcairn)", "value": "Pacific/Pitcairn" }{ "label": "(GMT-09:00) Hawaii-Aleutian Daylight Time (America/Adak)", "value": "America/Adak" }{ "label": "(GMT-09:00) Gambier Time (Pacific/Gambier)", "value": "Pacific/Gambier" }{ "label": "(GMT-09:30) Marquesas Time (Pacific/Marquesas)", "value": "Pacific/Marquesas" }{ "label": "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Honolulu)", "value": "Pacific/Honolulu" }{ "label": "(GMT-11:00) Niue Time (Pacific/Niue)", "value": "Pacific/Niue" }{ "label": "(GMT-11:00) Samoa Standard Time (Pacific/Pago_Pago)", "value": "Pacific/Pago_Pago" }
UsernameUsernamestring

Contains the name that a user enters to log in to the API or the user interface. The value for this field must be in the form of an email address, using all lowercase characters. It must also be unique across all organizations.

Marketing UserUserPermissionsMarketingUserboolean

Indicates whether the user is enabled to manage campaigns in the user interface (true) or not (false).

Offline UserUserPermissionsOfflineUserboolean

Indicates whether the user is enabled to use Offline Edition (true) or not (false).

See All PropsuseAdvancedPropsboolean

Set to true to see all available props for this object.

Action Authentication

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

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

About Salesforce

Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.

More Ways to Connect Salesforce + Zoom

Create Account with Salesforce (REST API) API on Custom Events from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Meeting Created (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Meeting Deleted (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Meeting Ended (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Meeting Started (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Meeting Created (Instant) from the Zoom API

Emit new event each time a meeting is created where you're the host

 
Try it
Meeting Started (Instant) from the Zoom API

Emit new event each time a meeting starts where you're the host

 
Try it
Recording Completed (Instant) from the Zoom API

Emit new event each time a new recording completes for a meeting or webinar where you're the host

 
Try it
Meeting Ended (Instant) from the Zoom API

Emit new event each time a meeting ends where you're the host

 
Try it
Meeting Updated (Instant) from the Zoom API

Emit new event each time a meeting is updated where you're the host

 
Try it
Add Meeting Registrant with the Zoom API

Registers a participant for a meeting. See the docs here

 
Try it
Add Webinar Registrant with the Zoom API

Registers a participant for a webinar. See the docs here

 
Try it
Create Meeting with the Zoom API

Creates a meeting for a user. A maximum of 100 meetings can be created for a user in a day.

 
Try it
Create User with the Zoom API

Creates a new user in your account.

 
Try it
Delete User with the Zoom API

Disassociates (unlinks) a user from the associated account or permanently deletes a user.

 
Try it

Explore Other Apps

1
-
24
of
2,500+
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.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream 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
Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.
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.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
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.