with Salesforce and Microsoft Excel?
Emit new event when a case is updated. See the documentation
Emit new event when when a specific cell's value changes in an Excel worksheet
Emit new event when when a new row is added to an Excel worksheet
Emit new event when a new Excel spreadsheet is created.
Emit new event when an Excel spreadsheet is updated.
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 rows to the end of specific table. See the documentation
Adds an existing lead to an existing campaign. See the documentation
Insert a new row into a specified Excel worksheet. See the documentation
Find a row by column and value in an Excel worksheet. See the documentation
Converts a SOAP XML Object received from Salesforce to JSON
Get the values of the specified columns in an Excel worksheet. See the documentation
Get the values of a specified Excel worksheet. See the documentation
Create multiple Accounts in Salesforce using Bulk API 2.0. See the documentation
Retrieve rows from a specified table in an Excel worksheet. 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
Update the value of a specific cell in an Excel worksheet. See the documentation
Creates a content note. See the documentation and Set Up Notes
Update the properties of tablerow object. (Only for work or school account)
See the documentation
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 Microsoft Excel API on Pipedream allows you to automate spreadsheet tasks, manipulate data, and integrate Excel with other apps and services. Through Pipedream, you can create serverless workflows that react to events, perform operations on Excel files like reading, writing, updating cells, and managing worksheets. This API turns Excel into a powerful tool for data analysis, report generation, and task automation without manual intervention.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { microsoft_excel: { type: "app", app: "microsoft_excel", } }, async run({steps, $}) { return await axios($, { url: `https://graph.microsoft.com/v1.0/me`, headers: { Authorization: `Bearer ${this.microsoft_excel.$auth.oauth_access_token}`, }, }) }, })