← Zoom + Salesforce integrations

Create User with Salesforce API on Meeting Created (Instant) from Zoom API

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

Trigger workflow on
Meeting Created (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 Meeting Created (Instant) trigger
    1. Connect your Zoom account
    2. 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 event each time a meeting is created where you're the host
Version:0.1.4
Key:zoom-meeting-created

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-meeting-created", name: "Meeting Created (Instant)", description: "Emit new event each time a meeting is created where you're the host", version: "0.1.4", type: "source", dedupe: "unique", props: { ...common.props, // eslint-disable-next-line pipedream/props-label, pipedream/props-description apphook: { type: "$.interface.apphook", appProp: "app", eventNames() { return [ constants.CUSTOM_EVENT_TYPES.MEETING_CREATED_BY_ME, constants.CUSTOM_EVENT_TYPES.MEETING_CREATED_FOR_ME, ]; }, }, }, hooks: { async deploy() { const { meetings } = await this.app.listMeetings({ params: { page_size: 25, }, }); if (!meetings || meetings.length === 0) { return; } const objects = this.sortByDate(meetings, "created_at"); for (const object of objects) { this.emitEvent({ object, }, object); } }, }, methods: { ...common.methods, emitEvent(payload, object) { const meta = this.generateMeta(object); this.$emit({ event: "meeting.created", payload, }, meta); }, generateMeta(object) { return { id: object.uuid, summary: `Meeting ${object.topic} created`, ts: +new Date(object.start_time), }; }, }, }; 

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.
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.4
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.4", annotations: { destructiveHint: false, openWorldHint: true, readOnlyHint: false, }, 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
Create Account with Salesforce API on Webinar Created (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Webinar Deleted (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Webinar Ended (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Webinar Started (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Webinar Updated (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Meeting Updated (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Account with Salesforce API on Recording Completed (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce (REST API) API on Custom Events from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Meeting Created (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Meeting Deleted (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Meeting Ended (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Meeting Started (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Webinar Created (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Webinar Deleted (Instant) from Zoom API
Zoom + Salesforce
 
Try it
Create Attachment with Salesforce API on Webinar Ended (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
Webinar Started (Instant) from the Zoom API

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

 
Try it
Webinar Created (Instant) from the Zoom API

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

 
Try it
Custom Events (Instant) from the Zoom API

Emit new events tied to your Zoom user or resources you own

 
Try it
Meeting Deleted (Instant) from the Zoom API

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

 
Try it
New Recording Transcript Completed (Instant) from the Zoom API

Emit new event each time a recording transcript is completed

 
Try it
Webinar Deleted (Instant) from the Zoom API

Emit new event each time a webinar is deleted where you're the host

 
Try it
Webinar Ended (Instant) from the Zoom API

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

 
Try it
Webinar Updated (Instant) from the Zoom API

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

 
Try it
Zoom Phone Events (Instant) from the Zoom API

Emit new Zoom Phone event tied to your Zoom user or resources you own

 
Try it
Case Updated (Instant, of Selectable Type) from the Salesforce API

Emit new event when a case is updated. See the documentation

 
Try it
Email Template Updated (Instant, of Selectable Type) from the Salesforce API

Emit new event when an email template is updated. See the documentation

 
Try it
Knowledge Article Updated (Instant, of Selectable Type) from the Salesforce API

Emit new event when a knowledge article is updated. See the documentation

 
Try it
New Case (Instant, of Selectable Type) from the Salesforce API

Emit new event when a case is created. See the documentation

 
Try it
New Deleted Record (Instant, of Selectable Type) from the Salesforce API

Emit new event when a record of the selected object type is deleted. See the documentation

 
Try it
New Email Template (Instant, of Selectable Type) from the Salesforce API

Emit new event when an email template is created. See the documentation

 
Try it
New Knowledge Article (Instant, of Selectable Type) from the Salesforce API

Emit new event when a knowledge article is created. See the documentation

 
Try it
New Outbound Message (Instant) from the Salesforce API

Emit new event when a new outbound message is received in Salesforce.

 
Try it
New Record (Instant, of Selectable Type) from the Salesforce API

Emit new event when a record of the selected object type is created. See the documentation

 
Try it
New Updated Record (Instant, of Selectable Type) from the Salesforce API

Emit new event when a record of the selected type is updated. See the documentation

 
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
Get Meeting Details with the Zoom API

Retrieves the details of a meeting.

 
Try it
Get Meeting Transcript with the Zoom API

Get the transcript of a meeting. See the documentation

 
Try it
Get Webinar Details with the Zoom API

Gets details of a scheduled webinar. See the docs here

 
Try it
List Call Recordings with the Zoom API

Get your account's call recordings. See the documentation

 
Try it
List Channels with the Zoom API

List a user's chat channels.

 
Try it
List Past Meeting Participants with the Zoom API

Retrieve information on participants from a past meeting. See the docs here

 
Try it
List Past Webinar Q&A with the Zoom API

The feature for Webinars allows attendees to ask questions during the Webinar and for the panelists, co-hosts and host to answer their questions. Use this API to list Q&A of a specific Webinar.

 
Try it
List User's Call Logs with the Zoom API

Gets a user's Zoom phone call logs. See the documentation

 
Try it
List Webinar Participants Report with the Zoom API

Retrieves detailed report on each webinar attendee. You can get webinar participant reports for the last 6 months. See the docs here

 
Try it
Send Chat Message with the Zoom API

Send chat messages on Zoom to either an individual user who is in your contact list or to a of which you are a member.

 
Try it
Update Meeting with the Zoom API

Updates an existing Zoom meeting

 
Try it
Update Webinar with the Zoom API

Update a webinar's topic, start time, or other settings

 
Try it
View User with the Zoom API

View your user information

 
Try it
Add Contact to Campaign with the Salesforce API

Adds an existing contact to an existing campaign. See the documentation

 
Try it
Add Lead to Campaign with the Salesforce API

Adds an existing lead to an existing campaign. See the documentation

 
Try it
Convert SOAP XML Object to JSON with the Salesforce API

Converts a SOAP XML Object received from Salesforce to JSON

 
Try it
Create Account with the Salesforce API

Creates a Salesforce account. See the documentation

 
Try it
Create Accounts (Batch) with the Salesforce API

Create multiple Accounts in Salesforce using Bulk API 2.0. See the documentation

 
Try it
Create Attachment with the Salesforce API

Creates an Attachment on a parent object. See the documentation

 
Try it
Create Campaign with the Salesforce API

Creates a marketing campaign. See the documentation

 
Try it
Create Case with the Salesforce API

Creates a Case, which represents a customer issue or problem. See the documentation

 
Try it
Create Case Comment with the Salesforce API

Creates a Case Comment on a selected Case. See the documentation

 
Try it
Create Contact with the Salesforce API

Creates a contact. See the documentation

 
Try it
Create Content Note with the Salesforce API

Creates a content note. See the documentation and Set Up Notes

 
Try it
Create Event with the Salesforce API

Creates an event. See the documentation

 
Try it
Create Lead with the Salesforce API

Creates a lead. See the documentation

 
Try it
Create Note with the Salesforce API

Creates a note. See the documentation

 
Try it
Create Opportunities (Batch) with the Salesforce API

Create multiple Opportunities in Salesforce using Bulk API 2.0. See the documentation

 
Try it
Create Opportunity with the Salesforce API

Creates an opportunity. See the documentation

 
Try it
Create Record with the Salesforce API

Create a record of a given object. See the documentation

 
Try it
Create Task with the Salesforce API

Creates a task. See the documentation

 
Try it
Create User with the Salesforce API

Creates a Salesforce user. See the documentation

 
Try it
Delete Opportunity with the Salesforce API

Deletes an opportunity. See the documentation

 
Try it
Delete Record with the Salesforce API

Deletes an existing record in an object. See the documentation

 
Try it
Find Records with the Salesforce API

Retrieves selected fields for some or all records of a selected object. See the documentation

 
Try it
Get Case with the Salesforce API

Retrieves a case by its ID. See the documentation

 
Try it
Get Knowledge Articles with the Salesforce API

Get a page of online articles for the given language and category through either search or query. See the documentation

 
Try it
Get Knowledge Data Category Groups with the Salesforce API

Fetch data category groups visible to the current user. See the documentation

 
Try it
Get Record by ID with the Salesforce API

Retrieves a record by its ID. See the documentation

 
Try it
Get User with the Salesforce API

Retrieves a user by their ID. See the documentation

 
Try it
Insert Blob Data with the Salesforce API

Inserts blob data in Salesforce standard objects. See the documentation

 
Try it
List Case Comments with the Salesforce API

Lists all comments for a case. See the documentation

 
Try it
List Email Messages with the Salesforce API

Lists all email messages for a case. See the documentation

 
Try it
List Email Templates with the Salesforce API

Lists all email templates. See the documentation

 
Try it
List Knowledge Articles with the Salesforce API

Lists all knowledge articles. See the documentation

 
Try it
List Object Fields with the Salesforce API

Lists all fields for a given object type. See the documentation

 
Try it
Post a Message to Chatter Feed with the Salesforce API

Post a feed item in Chatter. See the documentation

 
Try it
Search Object Records with the Salesforce API

Searches for records in an object using a parameterized search. See the documentation

 
Try it
Send Email with the Salesforce API

Sends an email. See the documentation

 
Try it
SOQL Query (Object Query) with the Salesforce API

Executes a Salesforce Object Query Language (SOQL) query-based, SQL-like search.

 
Try it
SOSL Search (Object Search) with the Salesforce API

Executes a Salesforce Object Search Language (SOSL) text-based search query.

 
Try it
Update Account with the Salesforce API

Updates a Salesforce account. See the documentation

 
Try it
Update Accounts (Batch) with the Salesforce API

Update multiple Accounts in Salesforce using Bulk API 2.0. See the documentation

 
Try it
Update Contact with the Salesforce API

Updates a contact. See the documentation

 
Try it
Update Email Template with the Salesforce API

Updates an email template. See the documentation

 
Try it
Update Opportunities (Batch) with the Salesforce API

Update multiple Opportunities in Salesforce using Bulk API 2.0. See the documentation

 
Try it
Update Opportunity with the Salesforce API

Updates an opportunity. See the documentation

 
Try it
Update Record with the Salesforce API

Update fields of a record. See the documentation

 
Try it
Upsert Record with the Salesforce API

Create or update a record of a given object. See the documentation

 
Try it

Explore Other Apps

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

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.
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.
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.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
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.
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
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.