# 💫 Segment Partner Destination Documentation Template --- title: Markettailor Destination --- [Markettailor](https://markettailor.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps B2B marketers create personalized websites without code, leveraging company data, audience insights, and recommendations. This destination is maintained by Markettailor. For any issues with the destination, [contact the Markettailor Support team](mailto:support@markettailor.io?subject=Segment%20integration). ## Getting Started {% include content/connection-modes.md %} 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Markettailor" in the Destinations Catalog search field, and select the "Markettailor" destination. 3. Choose which Source should send data to the Markettailor destination. 4. Go to the [Markettailor integrations](https://app.markettailor.io/integrations), find the Segment integration, click **Authorize**, and copy the API key. 5. Enter the API Key in the Markettailor destination settings in Segment. ## Page If you aren't familiar with the Segment Spec, take a look at the [Page method documentation](https://segment.com/docs/connections/spec/page/) to learn about what it does. An example call would look like: ```js analytics.page() ``` Segment sends Page calls to Markettailor as a `page view`. These events can be used for specific conversion events such as "Thank you page" viewed. ## Identify If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn what it does. An example call would look like: ```js analytics.identify('userId123', { email: 'john.doe@example.com' }); ``` Segment sends Identify calls to Markettailor as an `identify` event. ## Track If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn what it does. An example call would look like: ```js analytics.track('Login Button Clicked') ``` Segment sends Track calls to Markettailor as a `track` event. These events are used to track conversions and measure performance of personalized websites against generic version.