Think data, not databases. The serverless, branchable, scalable, consistent, highly available, and searchable database service focused on the developer experience.
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
The Xata API offers a serverless, scalable database service that supports building and deploying data-driven applications with ease. With its API-first approach, developers can perform CRUD operations on their databases, manage schemas, and leverage powerful search capabilities. In Pipedream, you can harness the Xata API to automate database operations, sync data across various platforms, and trigger workflows based on database events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
xata: {
type: "app",
app: "xata",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xata.io/user`,
headers: {
Authorization: `Bearer ${this.xata.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})