What do you want to automate

with Extracta.ai and Help Scout?

Prompt, edit and deploy AI agents that connect to Extracta.ai, Help Scout and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Conversation Assigned (Instant) from the Help Scout API

Emit new event when a conversation is assigned to an agent. See the documentation

 
Try it
New Conversation Created (Instant) from the Help Scout API

Emit new event when a new conversation is created.

 
Try it
New Customer Added (Instant) from the Help Scout API

Emit new event when a new customer is added.

 
Try it
Add Note to Conversation with the Help Scout API

Adds a note to an existing conversation in Help Scout. See the documentation

 
Try it
Create Customer with the Help Scout API

Creates a new customer record in Help Scout. See the documentation

 
Try it
Send Reply with the Help Scout API

Sends a reply to a conversation. Be careful as this sends an actual email to the customer. See the documentation

 
Try it
Integrate the Extracta.ai API with the Help Scout API
Setup the Extracta.ai API trigger to run a workflow which integrates with the Help Scout API. Pipedream's integration platform allows you to integrate Extracta.ai and Help Scout remarkably fast. Free for developers.

Connect Extracta.ai

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    extracta_ai: {
      type: "app",
      app: "extracta_ai",
    }
  },
  async run({steps, $}) {
    const data = {
        "extractionDetails": { 
            "name": "CVs Extraction",
            "description": "...",
            "language": "English",
            "options": {
                "hasTable": false,
                "hasVisuals": false,
                "handwrittenTextRecognition": false,
                "checkboxRecognition": false
            },
            "fields": [
                {
                    "description": "",
                    "example": "",
                    "key": "name"
                },
                {
                    "description": "",
                    "example": "",
                    "key": "surname"
                },
                {
                    "description": "",
                    "example": "",
                    "key": "phone_number"
                },
                {
                    "description": "last job title name",
                    "example": "Programmer",
                    "key": "last_job_position"
                },
                {
                    "description": "the number of years in numbers",
                    "example": "6",
                    "key": "years_of_experience"
                }
            ]
        }
    }
    
    return await axios($, {
      method: "post",
      url: `https://api.extracta.ai/api/v1/createExtraction`,
      headers: {
        Authorization: `Bearer ${this.extracta_ai.$auth.api_key}`,
        "content-type": `application/json`,
      },
      data,
    })
  },
})

Overview of Help Scout

The Help Scout API provides programmatic access to customer support functionalities, allowing the automation of ticketing, customer communication, and reporting tasks. With this API, you can read and send messages, manage conversations, work with mailboxes, create and update customers’ information, and generate reports. Utilizing the API on Pipedream, you can automate workflows that respond to events in Help Scout in real-time, integrate customer support data with other business tools, and streamline support operations.

Connect Help Scout

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: {
    help_scout: {
      type: "app",
      app: "help_scout",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.helpscout.net/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.help_scout.$auth.oauth_access_token}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo