ServiceM8

Field service software

Integrate the ServiceM8 API with the OpenAI (ChatGPT) API

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

Chat with OpenAI (ChatGPT) API on New Client (Instant) from ServiceM8 API
ServiceM8 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Form Response (Instant) from ServiceM8 API
ServiceM8 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Job (Instant) from ServiceM8 API
ServiceM8 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Job Completed (Instant) from ServiceM8 API
ServiceM8 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Job Queued (Instant) from ServiceM8 API
ServiceM8 + OpenAI (ChatGPT)
 
Try it
New Client (Instant) from the ServiceM8 API

Emit new event when a new client is created.

 
Try it
New Form Response (Instant) from the ServiceM8 API

Emit new event when a new Form Response is created.

 
Try it
New Job (Instant) from the ServiceM8 API

Emit new event when a new job is created. By creating this trigger, any other Job triggers will stop working as ServiceM8 will replace any previous ones.

 
Try it
New Job Completed (Instant) from the ServiceM8 API

Emit new event when a job completes. By creating this trigger, any other Job triggers will stop working as ServiceM8 will replace any previous ones.

 
Try it
New Job Queued (Instant) from the ServiceM8 API

Emit new event when a job is queued. By creating this trigger, any other Job triggers will stop working as ServiceM8 will replace any previous ones.

 
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
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

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

Classify items into specific categories using the Chat API

 
Try it
Translate Text (Whisper) with the OpenAI (ChatGPT) API

Translate text from one language to another using the Chat API

 
Try it
Create Transcription (Whisper) with the OpenAI (ChatGPT) API

Transcribes audio into the input language. See docs here.

 
Try it

Overview of ServiceM8

The ServiceM8 API allows businesses to streamline their field service management by automating tasks and integrating with other tools. Through Pipedream, you can harness this API to create custom workflows that trigger actions within ServiceM8 or sync data with other apps. Automate job scheduling, dispatching, invoicing, and more by reacting to events in real-time. Enhance productivity by connecting ServiceM8 to CRMs, accounting software, or custom databases, ensuring consistent and updated information across platforms.

Connect ServiceM8

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: {
    servicem8: {
      type: "app",
      app: "servicem8",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.servicem8.com/api_1.0/staff.json`,
      headers: {
        Authorization: `Bearer ${this.servicem8.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

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}`,
      },
    })
  },
})