---
rewrite: true
---
## Salescamp CRM Destination
Now it’s easy to send customer data to [Salescamp](https://www.salescamp.app/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) from Segment. Once you've tracked your data through Segment's open source libraries Segment will translate and route your data to Salescamp in a format they understand.
This destination is maintained by [Salescamp](https://www.salescamp.app/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners). Feel free to contact us at [hello@salescamp.app](mailto:hello@salescamp.app) for any help.
_**NOTE:** The Salescamp Destination is currently in beta, which means that they are still actively developing the destination. This doc was last updated on September 23, 2019. If you are interested in joining their beta program or have any feedback to help improve the Salescamp Destination and its documentation, please [let their team know](mailto:hello@salescamp.app)!_
## Getting Started
Segment’s Salescamp destination allows you to identify leads without using rest APIs.
{{>connection-modes}}
1. From your Segment UI's Destinations page click on "Add Destination".
2. Search for "Salescamp" within the Destinations Catalog and confirm the Source you'd like to connect to.
3. Drop in the "API Key" into your Segment Settings UI which you can find from your [Salescamp's dashboard](https://dashboard.salescamp.app/settings/integrations).
## Identify
The Salescamp destination makes it simple to integrate and send data to Salescamp. This destination feeds your prospective customers into Salescamp as Leads from your website or mobile app.
Let’s go through a quick javascript example of identifying a customers
If you haven't had a chance to review Segment's spec, please take a look to understand what the [Identify method](https://segment.com/docs/spec/identify/) does. An example call would look like:
```
analytics.identify('YOUR_USERS_ID', {
firstname: ‘Pete’,
lastname: ‘Gibbons',
title: 'VP of Derp',
email: 'peter.gibbons@initech.com',
company: 'Initech',
phone: '570-690-4150',
state: 'California',
rating: 'Hot',
city: 'east greenwich',
postalCode: '94115',
country: 'USA',
street: '19123 forest lane',
state: 'RI'
});
```
When you call `identify`, we’ll check to see if this Lead exists based on the `YOUR_USERS_ID` trait. If it does, Segment will update the contact with the traits you’ve passed in your `identify` call, otherwise Segment will create a new contact.
#### Custom traits
In order to send custom traits in Salescamp with Segment, you need to make sure you create the custom Lead Field inside Salescamp prior to sending the data.