@@ -21,15 +21,15 @@ updating Contacts in Eloqua following events that do not use an Eloqua form.
2121Upon invocation of a server-side ` identify ` , Segment will by default map the
2222Segment ` identify ` trait on the left to the Eloqua field on the right:
2323
24- | Segment trait | Eloqua field |
25- | ---| ---|
26- | email | Email |
27- | firstName | First Name |
28- | lastName | Last Name |
29- | street _ or_ address.street | Address |
30- | city _ or_ address.city | City |
31- | country _ or_ address .country | Country |
32- | title | Title |
24+ | Segment trait | Eloqua field |
25+ | -------------------------------- | ------------ |
26+ | ` email ` | Email |
27+ | ` firstName ` | First Name |
28+ | ` lastName ` | Last Name |
29+ | ` street ` _ or_ ` address.street ` | Address |
30+ | ` city ` _ or_ ` address.city ` | City |
31+ | ` country ` _ or_ a ` ddress .country` | Country |
32+ | ` title ` | Title |
3333
3434Follow the Segment spec to ensure proper mapping of these fields from Segment
3535` identify ` traits: /docs/connections/spec/identify/#traits.
@@ -48,15 +48,15 @@ in your destination settings.
4848Upon invocation of a server-side ` group ` event, Segment will by default map the
4949Segment ` group ` trait on the left to the Eloqua field on the right:
5050
51- | Segment trait | Eloqua field |
52- | ---| ---|
53- | name + groupId | Company Name |
54- | street _ or_ address.street | Address 1 |
55- | city _ or_ address.city | City|
56- | country _ or_ address.country | Country |
57- | city _ or_ address.city | City |
58- | country _ or_ address.country | Country |
59- | phone | Business Phone |
51+ | Segment trait | Eloqua field |
52+ | -------------------------------- | -------------- |
53+ | ` name ` + ` groupId ` | Company Name |
54+ | ` street ` _ or_ ` address.street ` | Address 1 |
55+ | ` city ` _ or_ ` address.city ` | City |
56+ | ` country ` _ or_ ` address.country ` | Country |
57+ | ` city ` _ or_ ` address.city ` | City |
58+ | ` country ` _ or_ ` address.country ` | Country |
59+ | ` phone ` | Business Phone |
6060
6161Segment concatenates ` traits.name ` and ` groupId ` to Company Name to ensure
6262uniqueness. Therefore, in order to successfully create or update an Account,
@@ -85,7 +85,7 @@ that specifies the Segment trait names and the corresponding custom Account or
8585Contact fields to associate them with in Eloqua.
8686
8787Segment's custom trait mapping will match exactly what you input into your
88- Segment settings. For example, if you have a field called ` Account Rating ` in
88+ Segment settings. For example, if you have a field with a display name called ` Account Rating ` in
8989Eloqua, and a property called ` AccountRating ` in your Segment events, you
9090should enter ` AccountRating: Account Rating ` as the mapping in the "Map Custom
9191Traits to Accounts" setting in the Segment UI.
@@ -104,7 +104,7 @@ specifying the Segment event names with the corresponding Custom Object you
104104would like to associate it with in Eloqua.
105105
106106Segment will also map the properties of ` track ` events with Custom Object
107- fields of the same name. Our integration does an automatic case- and
107+ fields of the same name. The integration does an automatic case- and
108108formatting-insensitive match so that if you have a field called ` Account Type `
109109in Eloqua and a property called ` AccountType ` in your Segment event, the
110110mapping will get handled.
@@ -119,13 +119,13 @@ Segment identifies Eloqua Custom Object Fields with `date` data types, and
119119converts date objects to Unix date strings in seconds, before sending the
120120payload to Eloqua.
121121
122- | ** Eloqua Data Type** | ** Common Data Type** | ** Example Value** |
123- | ---| ---| ---|
124- | Number | Integer | 31415 |
125- | Text | String (max 250 characters) | '31415' |
126- | Large Text | String (max 32000 characters) | '31415' |
127- | Date/Time | String (Unix date string in seconds) | '1543861960' |
128- | Numeric | Float (up to 4 decimal places) | 3.1415 |
122+ | ** Eloqua Data Type** | ** Common Data Type** | ** Example Value** |
123+ | -------------------- | ------------------------------------ | ----------------- |
124+ | Number | Integer | 31415 |
125+ | Text | String (max 250 characters) | '31415' |
126+ | Large Text | String (max 32000 characters) | '31415' |
127+ | Date/Time | String (Unix date string in seconds) | '1543861960' |
128+ | Numeric | Float (up to 4 decimal places) | 3.1415 |
129129
130130### User Email
131131
0 commit comments