HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a deal. See the documentation
Adds a contact to a specific static list. See the documentation
Attempts to cancel all open orders. A response will be provided for each order that is attempted to be cancelled. If an order is no longer cancelable, the server reject the request, See the docs
Create or update a batch of contacts by its ID or email. See the documentation
Attempts to cancel an open order. If the order is no longer cancelable (example: status=filled
), the server will reject the request, See the docs
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}`,
},
})
},
})
Alpaca API allows you to harness the power of automated trading by providing an interface to manage your stock and equity portfolio through simple API calls. It's particularly suited for building trading bots, algorithmic trading strategies, or just automating interactions with your investment portfolio. Whether you're looking to place trades based on specific market conditions, automatically adjust your portfolio in response to certain triggers, or simply streamline your investment activities, Alpaca's trading API offers a robust solution.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alpaca: {
type: "app",
app: "alpaca",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.alpaca.markets/v2/account`,
headers: {
Authorization: `Bearer ${this.alpaca.$auth.oauth_access_token}`,
},
})
},
})