Help Scout

Simple Customer Service Software and Education

Integrate the Help Scout API with the Go API

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

Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it

Overview of Help Scout

What can you build with the Help Scout API?

Help Scout is a customer service platform that enables companies to deliver
great customer service. With the Help Scout API, you can extend the
functionality of Help Scout in a variety of ways.

Here are a few examples of what you can build with the Help Scout API:

  • A custom integration that connect Help Scout with another tool you use
  • A reporting tool that gives you insights into your customer service data
  • A help desk automation tool that streamlines your customer service workflow
  • A tool that allows you to provide self-service support to your customers
  • Any other creative solution you can think of!

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

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}