iAuditor by SafetyCulture

SafetyCulture (iAuditor) is an inspection, issue capture and corrective action platform for teams that’s used over 50,000 times a day in over 85 countries.

Integrate the iAuditor by SafetyCulture API with the OpenAI (ChatGPT) API

Setup the iAuditor by SafetyCulture API trigger to run a workflow which integrates with the OpenAI (ChatGPT) API. Pipedream's integration platform allows you to integrate iAuditor by SafetyCulture and OpenAI (ChatGPT) remarkably fast. Free for developers.

Chat with OpenAI (ChatGPT) API on Action Created from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Inspection Completed from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on Action Created from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on Inspection Completed from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + OpenAI (ChatGPT)
 
Try it
Classify Items into Categories with OpenAI (ChatGPT) API on Action Created from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + OpenAI (ChatGPT)
 
Try it
Action Created from the iAuditor by SafetyCulture API

Emit new event when a new action is created.

 
Try it
Inspection Completed from the iAuditor by SafetyCulture API

Emit new event when an inspection has completed.

 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Create Inspection with the iAuditor by SafetyCulture API

Create a new inspection in iAuditor by SafetyCulture. See the documentation

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Create User with the iAuditor by SafetyCulture API

Create a new user in iAuditor by SafetyCulture. See the documentation

 
Try it
Classify Items into Categories with the OpenAI (ChatGPT) API

Classify items into specific categories using the Chat API

 
Try it

Overview of iAuditor by SafetyCulture

iAuditor by SafetyCulture API allows you to tap into a rich reservoir of safety and quality inspection data, enabling you to automate workflows around inspection management. With this API on Pipedream, you can create custom integrations to trigger actions based on audit completions, new issues, or updates in iAuditor. Streamline safety processes, connect with other tools, and manipulate inspection data to fit your needs.

Connect iAuditor by SafetyCulture

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    iauditor_by_safetyculture: {
      type: "app",
      app: "iauditor_by_safetyculture",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.safetyculture.io/share/connections`,
      headers: {
        Authorization: `Bearer ${this.iauditor_by_safetyculture.$auth.api_token}`,
        "accept": `application/json`,
        "sc-integration-id": `sc-readme`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

The OpenAI (ChatGPT) API offers a powerful gateway to natural language processing capabilities, enabling you to automate conversation-based tasks or generate text-based content programmatically. When paired with Pipedream's no-code platform, you can craft potent serverless workflows that trigger AI-generated text in response to various events, parse and analyze incoming data, or even add conversational AI to your apps and services.

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})