RepairShopr is a platform to manage a service or repair business with job tracking (ticketing) and an emphasis on great communication.
Go to siteWith the RepairShopr API, you can build powerful applications revolving around your business. Whether you're looking for data to display on an internal dashboard, or an intuitive customer-facing kiosk, the API opens up limitless possibilities.
Here are just a few examples of things you can build using the RepairShopr API:
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}`,
},
})
},
})
RepairShopr uses API keys for authentication. When you connect your RepairShopr account, Pipedream securely stores the keys so you can easily authenticate to RepairShopr APIs in both code and no-code steps.
To get your API token, log in to your RepairShopr account, navigate to the upper right corner of the page, click your name and a drop down menu will appear. Click on Profile/Password, then click API Tokens.
Subdomain is the leading part of the host on your browser when you are browsing your RepairShopr dashboard. It has the structure https://[subdomain].repairshopr.com
, for instance, in https://pipedream.repairshopr.com
the subdomain is pipedream
.