ISN

The Inspection Support Network is the world leader in connecting, streamlining & automating all aspects of running any #InspectionBusiness.

Go to site

ISN API Integrations

Build and run workflows using the ISN API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The 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:

  • A property management application that allows users to view and update property information
  • An inspection scheduling application that allows users to schedule and track inspections
  • A vendor management application that allows users to view and update vendor information
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Authentication

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,

  • Navigate to your ISN account and sign in
  • Go to ”Settings” > “My Access Keys”