← Jotform + Salesforce integrations

Create User with Salesforce API on New Submission (Instant) from Jotform API

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

Trigger workflow on
New Submission (Instant) from the Jotform 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 Jotform 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 New Submission (Instant) trigger
    1. Connect your Jotform account
    2. Optional- Select a Team
    3. Select a Form
  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 when a form is submitted
Version:0.1.6
Key:jotform-new-submission

Jotform Overview

Jotform’s API is a powerhouse for automating form and survey data management. With Pipedream, harness this API to trigger workflows from new form submissions, manipulate and analyze your form data, and sync it across various platforms. Think streamlined data entry to CRMs, instant notifications for new leads or feedback, and timely data backups to cloud storage.

Trigger Code

import jotform from "../../jotform.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "jotform-new-submission",
  name: "New Submission (Instant)",
  description: "Emit new event when a form is submitted",
  version: "0.1.6",
  type: "source",
  dedupe: "unique",
  props: {
    jotform,
    http: "$.interface.http",
    teamId: {
      propDefinition: [
        jotform,
        "teamId",
      ],
    },
    formId: {
      propDefinition: [
        jotform,
        "formId",
        (c) => ({
          teamId: c.teamId,
          excludeDeleted: true,
        }),
      ],
    },
  },
  hooks: {
    async deploy() {
      const { content: form } = await this.jotform.getForm(this.formId, this.teamId);
      const { content: submissions } = await this.jotform.getFormSubmissions({
        formId: this.formId,
        teamId: this.teamId,
        params: {
          limit: 25,
          orderby: "created_at",
        },
      });
      for (let submission of submissions.reverse()) {
        const meta = {
          id: submission.id,
          summary: form.title,
          ts: Date.now(),
        };
        this.$emit(submission, meta);
      }
    },
    async activate() {
      return (await this.jotform.createHook({
        endpoint: this.http.endpoint,
        formId: this.formId,
        teamId: this.teamId,
      }));
    },
    async deactivate() {
      return (await this.jotform.deleteHook({
        endpoint: this.http.endpoint,
        formId: this.formId,
        teamId: this.teamId,
      }));
    },
  },
  async run(event) {
    const { body } = event;
    let { content: submission } = await this.jotform.getFormSubmission({
      submissionId: body.submissionID,
      teamId: this.teamId,
    });

    // insert answers from the webhook event
    const rawRequest = JSON.parse(body.rawRequest);
    for (const key of Object.keys(rawRequest)) {
      const regex = /^q(\d+)_/;
      const match = key.match(regex);
      if (match && match[1]) {
        submission.answers[match[1]].answer = rawRequest[key];
      }
    }

    this.$emit(submission, {
      summary: body.formTitle || JSON.stringify(body),
      id: body.submissionID,
      ts: Date.now(),
    });
  },
  sampleEmit,
};

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
JotformjotformappThis component uses the Jotform app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
TeamteamIdstringSelect a value from the drop down menu.
FormformIdstringSelect a value from the drop down menu.

Trigger Authentication

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

About Jotform

Jotform enables you to create online forms, collect responses directly in your email, and create fillable PDF forms.

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 + Jotform

Get Form Submissions with Jotform API on New Object (of Selectable Type) from Salesforce (REST API) API
Salesforce + Jotform
 
Try it
Get Monthly User Usage with Jotform API on New Object (of Selectable Type) from Salesforce (REST API) API
Salesforce + Jotform
 
Try it
Get User Submissions with Jotform API on New Object (of Selectable Type) from Salesforce (REST API) API
Salesforce + Jotform
 
Try it
Get Form Submissions with Jotform API on New Object (Instant, of Selectable Type) from Salesforce (REST API) API
Salesforce + Jotform
 
Try it
Get Monthly User Usage with Jotform API on New Object (Instant, of Selectable Type) from Salesforce (REST API) API
Salesforce + Jotform
 
Try it
New Submission (Instant) from the Jotform API

Emit new event when a form is submitted

 
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 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
Get Form Submissions with the Jotform API

Gets a list of form responses See the docs here

 
Try it
Get Monthly User Usage with the Jotform API

Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here

 
Try it
Get User Submissions with the Jotform API

Gets a list of all submissions for all forms on the account See the docs here

 
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

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.