# Help Scout Destination

## Destination Info

* Accepts [Identify](/docs/segment/connections/spec/identify) calls.
* Refer to it as **Help Scout** in the [Integrations object.](/docs/segment/guides/filtering-data/#filtering-with-the-integrations-object)

### Components

* Server

## Connection Modes

[Learn more about connection modes.](/docs/segment/connections/destinations/#connection-modes)

### Device-Mode

* web: no
* mobile: no
* server: no

### Cloud-Mode

* web: yes
* mobile: yes
* server: yes

[Help Scout](https://www.helpscout.com/?utm_source=partner\&utm_campaign=partner-integration-marketplace-listing\&utm_content=segment) is a help desk software company which provides an email-based customer support platform, knowledge base tool, and an embeddable search/contact widget for customer service professionals.

## Getting Started

1. From the Segment web app, click **Catalog**.
2. Search for Help Scout in the Catalog, select it, and choose which of your sources to connect the destination to.
3. Click "Connect to Help Scout" to start the Help Scout authentication process. Help Scout provides a secure token that Segment uses to send data to Help Scout. If you need to change accounts, click **Disconnect**, then connect to a new Help Scout account.
4. Enable the Destination.

> \[!WARNING]
>
> Help Scout's OAuth connection to Segment supports one destination per user. If you try to create two destinations with the same user, you'll receive invalid token errors when you use the destination.

## Identify

If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/segment/connections/spec/identify/) does. An example call would look like this:

```js
  analytics.identify({
    userId: '019mr8mf4r',
    traits: {
      name: 'Kamala Khan',
      email: 'kkhan@colesacademic.edu',
    }
  });
```

You can use the Identify call to create or update customers in your Help Scout account.

Help Scout requires a `name` and an `email` to complete the request. You can set the userId as the `email`, although this is [not recommended](/docs/segment/connections/spec/identify/#user-id). You can also specify `firstName` and `lastName` traits instead of a single `name` trait. You can learn more about which properties Help Scout accepts in their [Create Customer](https://developer.helpscout.com/mailbox-api/endpoints/customers/create/) documentation.

> \[!NOTE]
>
> This destination doesn't allow you to send custom properties to Help Scout. Use [Destination Functions](/docs/segment/connections/functions/destination-functions/#create-a-destination-function) to send any non-standard properties to Help Scout.
