# 💫 Segment Partner Documentation Trustpilot --- [Trustpilot](https://www.trustpilot.com/) is an open and independent review platform. On Trustpilot, people can share and discover reviews of businesses, and businesses can gain insights and showcase their service and products performance through reviews. This destination is maintained by Trustpilot. For any issues with the destination, please [reach out to their team](https://support.trustpilot.com/hc/en-us/articles/215949867-Contact-Trustpilot-s-Support-Team). _**NOTE:** Trustpilot is currently in beta, which means that they are still actively developing the product. This doc was last updated on February 25, 2019. If you are interested in joining their beta program or have any feedback to help improve the Trustpilot Destination and its documentation, please [let their team know](https://support.trustpilot.com/hc/en-us/articles/215949867-Contact-Trustpilot-s-Support-Team)!_ ## Getting Started {{>connection-modes}} 1. From your Segment UI's Destinations page click on "Add Destination". 2. Search for "Trustpilot" within the Destinations Catalog and confirm the Source you'd like to connect to. 3. Drop in the "Integration Key" into your Segment Settings UI as "API Key" which you can find on [Trustpilot integrations page](https://businessapp.b2b.trustpilot.com/#/ecommerce/segment). ## Track If you haven't had a chance to review our spec, please take a look to understand what the [Track method](https://segment.com/docs/spec/track/) does. An example call would look like: ``` analytics.track('Order Completed', { checkout_id: 'fksdjfsdjfisjf9sdfjsd9f', order_id: '50314b8e9bcf000000000000', email: 'test@gmail.com', name: 'John', surname: 'Johnson', affiliation: 'Google Store', total: 27.50, revenue: 25.00, shipping: 3, tax: 2, discount: 2.5, coupon: 'hasbros', currency: 'USD', products: [ { product_id: '507f1f77bcf86cd799439011', sku: '45790-32', name: 'Monopoly: 3rd Edition', price: 19, quantity: 1, category: 'Games', url: 'https://www.example.com/product/path', image_url: 'https:///www.example.com/product/path.jpg' }, { product_id: '505bd76785ebb509fc183733', sku: '46493-32', name: 'Uno Card Game', price: 3, quantity: 2, category: 'Games' } ] }); ``` Trustpilot accepts only `Order Completed` events. These Track calls will be sent to Trustpilot as a `track` event and create a review invitation. **IMPORTANT:** Both `order_id` and `email` are required fields.