with Salesforce and monday?
Emit new event when a column value is updated on a board. See the documentation
Emit new event when a case is updated. See the documentation
Emit new event when an item's name is updated. See the documentation
Emit new event when a board is created in Monday. See the documentation
Emit new event when a new item is added to a board. See the documentation
Emit new event when a sub-item is created. See the documentation
Emit new event when an update is posted in sub-items. See the documentation
Emit new event when a new user is created in Monday. See the documentation
Emit new event when a value in the specified column is updated. See the documentation
Emit new event when any sub-item column changes. See the documentation
Emit new event when a sub-item name changes. See the documentation
Emit new event when an email template is updated. See the documentation
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
Return values of specific column(s) for a board item. See the documentation
Creates a Case Comment on a selected Case. See the documentation
Searches a column for items matching a value. 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
Update multiple column values of an item. 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 monday.com API unlocks the potential to automate workflows, sync data across applications, and create dynamic project management solutions. With this API on Pipedream, you can craft custom integrations that respond to events in monday.com, manipulate boards, items, and columns, and harmonize project data with third-party services to streamline operations, reduce manual workload, and ensure consistent information flow within your business ecosystem.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { monday: { type: "app", app: "monday", } }, async run({steps, $}) { const data = { query: `query { me { id email } }` } return await axios($, { method: "post", url: `https://api.monday.com/v2`, headers: { "Authorization": `${this.monday.$auth.api_key}`, }, data, }) }, })