The Inspection Support Network is the world leader in connecting, streamlining & automating all aspects of running any #InspectionBusiness.
Go to siteThe ISN API allows developers to access data stored in the ISN system. This data includes information on properties, inspections, vendors, and more. Using the ISN API, developers can build applications that allow users to view and manipulate this data.
Some examples of applications that can be built using the ISN API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
isn: {
type: "app",
app: "isn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://inspectionsupport.com/${this.isn.$auth.company_key}/rest/me`,
auth: {
username: `${this.isn.$auth.username}`,
password: `${this.isn.$auth.password}`,
},
})
},
})
ISN uses API keys for authentication. When you connect your ISN account, Pipedream securely stores the keys so you can easily authenticate to ISN APIs in both code and no-code steps.
To retrieve your API keys,