Dispatch is your partner in on-demand delivery. Focus on growing your business and let us help you Deliver More*
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 WhatsApp, LinkedIn, or SMS message. See the documentation
The Dispatch API provides a powerful mechanism to streamline logistics and delivery operations. By leveraging it through Pipedream, businesses can automate the scheduling and tracking of dispatches, facilitating real-time coordination between dispatchers, drivers, and customers. This can lead to more efficient route planning, faster delivery times, and improved communication, all of which contribute to a better overall experience for both the provider and the end-user.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dispatch: {
type: "app",
app: "dispatch",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.dispatchit.com/api/external/v1/organizations`,
headers: {
"Accept": `*/*`,
"Content-Type": `application/json`,
},
auth: {
username: `${this.dispatch.$auth.api_key}`,
password: `${this.dispatch.$auth.api_token}`,
},
})
},
})
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}`,
},
})
},
})