A new way to send effortless, unforgettable gifts 🎁
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
Retrieves orders for an order batch in Goody. See the documentation
The Goody API allows for the creation of digital rewards and incentives, facilitating the sending of gift cards and other perks electronically. In Pipedream, you can harness this API to automate the distribution of rewards, integrate with CRM systems, or track and analyze the impact of your rewards program. By leveraging Pipedream’s capability to connect with numerous other platforms, you can create multifaceted workflows that trigger based on various events or conditions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goody: {
type: "app",
app: "goody",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.goody.$auth.environment}.ongoody.com/v1/me`,
headers: {
Authorization: `Bearer ${this.goody.$auth.automation_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}`,
},
})
},
})