with Salesforce and Overloop?
Emit new event when a case is updated. See the documentation
Emit new event each time a campaign is created. See the docs
Emit new event each time a contact is created. See the docs
Emit new event each time a contact replies to an email or LinkedIn message. See the docs
Emit new event each time an exclusion list item is created. See the docs
Emit new event when an email template is updated. See the documentation
Emit new event each time an organization is created. See the docs
Emit new event each time a workflow is created. See the docs
Emit new event when a knowledge article is updated. See the documentation
Emit new event when a case is created. See the documentation
Emit new event when a record of the selected object type is deleted. See the documentation
Emit new event when an email template is created. See the documentation
Emit new event when a knowledge article is created. See the documentation
Emit new event when a new outbound message is received in Salesforce.
Emit new event when a record of the selected object type is created. See the documentation
Emit new event when a record of the selected type is updated. See the documentation
Adds an existing contact to an existing campaign. See the documentation
Adds an existing lead to an existing campaign. See the documentation
Converts a SOAP XML Object received from Salesforce to JSON
Create multiple Accounts in Salesforce using Bulk API 2.0. See the documentation
Creates an Attachment on a parent object. See the documentation
Creates a Case, which represents a customer issue or problem. See the documentation
Creates a Case Comment on a selected Case. See the documentation
Creates a content note. See the documentation and Set Up Notes
Create multiple Opportunities in Salesforce using Bulk API 2.0. See the documentation
Retrieves selected fields for some or all records of a selected object. See the documentation
Get a page of online articles for the given language and category through either search or query. See the documentation
Fetch data category groups visible to the current user. See the documentation
Inserts blob data in Salesforce standard objects. See the documentation
Lists all email messages for a case. See the documentation
Post a feed item in Chatter. See the documentation
Searches for records in an object using a parameterized search. See the documentation
Executes a Salesforce Object Query Language (SOQL) query-based, SQL-like search.
Executes a Salesforce Object Search Language (SOSL) text-based search query.
Update multiple Accounts in Salesforce using Bulk API 2.0. See the documentation
Update multiple Opportunities in Salesforce using Bulk API 2.0. See the documentation
Create or update a record of a given object. See the documentation
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.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { salesforce_rest_api: { type: "app", app: "salesforce_rest_api", } }, async run({steps, $}) { return await axios($, { url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`, headers: { Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`, }, }) }, })
The Overloop API is a powerhouse for sales automation, enabling users to streamline their sales pipeline by automating repetitive tasks, syncing data across platforms, and enhancing lead management. With Pipedream, you can leverage Overloop's capabilities to create detailed, event-driven workflows that respond in real-time to changes in your sales environment. This integration can help maintain a healthy sales funnel, ensure timely follow-ups, and personalize communication at scale.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { overloop: { type: "app", app: "overloop", } }, async run({steps, $}) { return await axios($, { url: `https://api.overloop.com/public/v1/organizations`, headers: { "Authorization": `${this.overloop.$auth.api_key}`, "Content-Type": `application/vnd.api+json; charset=utf-8`, }, }) }, })