@@ -21,15 +21,15 @@ updating Contacts in Eloqua following events that do not use an Eloqua form.
21
21
Upon invocation of a server-side ` identify ` , Segment will by default map the
22
22
Segment ` identify ` trait on the left to the Eloqua field on the right:
23
23
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 |
33
33
34
34
Follow the Segment spec to ensure proper mapping of these fields from Segment
35
35
` identify ` traits: /docs/connections/spec/identify/#traits.
@@ -48,15 +48,15 @@ in your destination settings.
48
48
Upon invocation of a server-side ` group ` event, Segment will by default map the
49
49
Segment ` group ` trait on the left to the Eloqua field on the right:
50
50
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 |
60
60
61
61
Segment concatenates ` traits.name ` and ` groupId ` to Company Name to ensure
62
62
uniqueness. 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
85
85
Contact fields to associate them with in Eloqua.
86
86
87
87
Segment'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
89
89
Eloqua, and a property called ` AccountRating ` in your Segment events, you
90
90
should enter ` AccountRating: Account Rating ` as the mapping in the "Map Custom
91
91
Traits to Accounts" setting in the Segment UI.
@@ -104,7 +104,7 @@ specifying the Segment event names with the corresponding Custom Object you
104
104
would like to associate it with in Eloqua.
105
105
106
106
Segment 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
108
108
formatting-insensitive match so that if you have a field called ` Account Type `
109
109
in Eloqua and a property called ` AccountType ` in your Segment event, the
110
110
mapping will get handled.
@@ -119,13 +119,13 @@ Segment identifies Eloqua Custom Object Fields with `date` data types, and
119
119
converts date objects to Unix date strings in seconds, before sending the
120
120
payload to Eloqua.
121
121
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 |
129
129
130
130
### User Email
131
131
0 commit comments