Amilia helps organizations offer, manage and sell activities to their community with the SmartRec eCommerce platform.
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
Amilia API serves as a gateway to streamline recreation and community-based activities management. It allows developers to integrate a variety of functionalities such as account management, program registrations, and scheduling into their applications. With Pipedream, you can harness this API to automate processes, sync data across platforms, and enhance customer engagement by tying into email, SMS services, or other business tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
amilia: {
type: "app",
app: "amilia",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.amilia.com/api/v3/en/keywords`,
headers: {
Authorization: `Bearer ${this.amilia.$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}`,
},
})
},
})