# Quora Conversion Pixel Destination

## Destination Info

* Accepts [Track](/docs/segment/connections/spec/track) calls.
* Refer to it as **Quora Conversion Pixel** in the [Integrations object.](/docs/segment/guides/filtering-data/#filtering-with-the-integrations-object)

### Components

* [Browser](https://github.com/segment-integrations/analytics.js-quora-conversion-pixel)

## Connection Modes

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

### Device-Mode

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

### Cloud-Mode

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

[Quora Conversion Pixel](https://www.quora.com/business) enables you to attribute downstream user actions on your website to your ad campaigns running on Quora.com. Our client-side Destination code is open source. You can browse the code in the [@segmentio/analytics.js-integrations](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/quora-conversion-pixel) GitHub repository.

## Getting Started

1. From the Segment web app, click **Catalog**.
2. Search for "Quora" in the Catalog, select it, and choose which of your sources to connect the destination to.
3. Add your Quora Conversion Pixel Key to your Destination settings. To get this you will need to do the following:

   1. Log into your [Quora Ads Manager Account](https://www.quora.com/ads/account).
   2. Navigate to the "Quora Pixel" tab in your Quora Dashboard.
   3. Click the "Setup Pixel" button to open the installation popup modal.
   4. Under "Option A: Install a JavaScript Pixel," find your Quora Conversion Pixel Key in the Quora JavaScript Pixel - the key is embedded in a tag that looks like `qp('init', '7cc5a029c2604daa8365d15ff337146e')`. In the example below, the key is `7cc5a029c2604daa8365d15ff337146e`.

## Track

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

```js
analytics.track('Completed Purchase', {
  revenue: 42.99,
  promo: 'COUPON1',
  orderId: '12345',
  productType: 'Clothing'
});
```

Quora Conversion Pixel currently supports a single `Generic Track` event. This is expected to change in the near future. However, for now, you can map any number of event names (e.g. "Completed Purchase") to this Generic event in your Destination settings to fire it.

## Settings

Segment lets you change these destination settings from the Segment app without having to touch any code.

| Field                      | Description                                                                                                                                                                                                                                                                                                        | Required | Type   |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- | ------ |
| Generic Track Events       | Quora Conversion Pixel currently supports a single \`Generic\` Track event. This is expected to change in the near future. For now, you can map any number of event names to this \`Generic\` event to fire it.                                                                                                    | No       | array  |
| Quora Conversion Pixel Key | Enter your Quora Conversion Pixel write key. It should be a series of letters and numbers, which you can find in your \`Install Pixel\` option in your Quora Ads Manager -> Conversion Pixel tab. It is the string of letters and numbers that is the second argument to \`qp('init', \<This is your write key>)\` | Yes      | string |
