Rockset is a serverless search and analytics engine that allows you to create live dashboards and real-time data APIs on DynamoDB, Kafka, S3 and more.
Add documents to a collection in Rockset. Learn more at https://docs.rockset.com/rest/#adddocuments.
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a new integration with Rockset. Learn more at https://docs.rockset.com/rest/#createintegration
Rockset is a real-time indexing database service designed for low-latency, high-concurrency analytics. With the Rockset API, you can query your datasets, create and manage collections, and integrate with event streams for real-time analytics. Using Pipedream's serverless platform, you can automate workflows that react to database events, sync data across services, or trigger actions based on analytical insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rockset: {
type: "app",
app: "rockset",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rs2.usw2.rockset.com/v1/orgs/self/users/self`,
headers: {
"Authorization": `ApiKey ${this.rockset.$auth.apikey}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})