RepairShopr is a platform to manage a service or repair business with job tracking (ticketing) and an emphasis on great communication.
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 RepairShopr API bridges your repair shop management activities with powerful automation capabilities on Pipedream. Whether it's triggering workflows from new tickets, updating client records, or syncing invoices, this API has got you covered. Streamline your repair service operations by automating routine tasks, integrating with countless other apps, and refining customer interactions, all through the convenience of Pipedream's serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
repairshopr: {
type: "app",
app: "repairshopr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.repairshopr.$auth.subdomain}.repairshopr.com/api/v1/me`,
auth: {
username: ``,
password: ``,
},
params: {
api_key: `${this.repairshopr.$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}`,
},
})
},
})