githubEdit

Configuration

Help Scout has different kinds of apps. The Frigg integration works with the Mailbox API, which allows your app to interact with Help Scout in the most flexible way.

Getting started

This guide assumes you already have a Frigg App working.

  1. Sign up/in to your Help Scout account, for free (site linkarrow-up-right).

  2. Follow the official instructionsarrow-up-right for creating an App under your profile (not in the App Directory).

  3. Specify a Redirection URL that follows this pattern: https://{your domain}/redirect. This is an example for localhost: http://localhost:3000/redirect.

  4. In your Frigg App env file, add the following entries:

"HELPSCOUT_CLIENT_ID": "{{ your app client id }}",
"HELPSCOUT_CLIENT_SECRET": "{{ your app secret }}"
  1. Add a Help Scout integration file to your Frigg app (you can find an example at the end of this document).

  2. Implement any calls you need (use the getSampleData method as an example).

  3. Add the integration in your appDefinition in backend.js:

const appDefinition = {
    integrations: [
        helpscoutIntegration
    ],
    user: {
        password: true,
    }
}
  1. Done! You are ready to run the app and test the integration live.

Example integration file

Last updated

Was this helpful?