with Google Chat and Salesforce?
Emit new event when a case is updated. See the documentation
Emit new event when a new command is used in a space. See the documentation
Emit new event when a new mention is received in a space. See the documentation
Emit new event when a new message is posted in a space. 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
Lists messages in a space that the caller is a member of, including messages from blocked members and spaces. See the documentation
Create multiple Accounts in Salesforce using Bulk API 2.0. See the documentation
Lists spaces the caller is a member of. Group chats and DMs aren't listed until the first message is sent. 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 Google Chat API allows you to build custom bots for Google Chat, enabling automated interactions with users within a chat space. By leveraging this API on Pipedream, you can create powerful workflows that respond to messages, automate tasks, and connect Google Chat with other services. Pipedream's serverless platform provides a seamless way to invoke these APIs based on triggers from Google Chat or other apps.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { google_chat: { type: "app", app: "google_chat", } }, async run({steps, $}) { return await axios($, { url: `https://www.googleapis.com/oauth2/v1/userinfo`, headers: { Authorization: `Bearer ${this.google_chat.$auth.oauth_access_token}`, }, }) }, })
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}`, }, }) }, })