Client Tags
Client Tags for Reporting (Credit Cards, Web Wrapper)
Example
<WebWrapper
channel="your-channel"
zone="your-zone"
bearerToken="{your_token}"
productTypes={[ApiModels.ProductType.CreditCard]}
personalInformation={{ /* ...any data you don't want to ask for again */ }}
clientTags={{
clientId: ['client1'],
trafficsource: ['email'],
campaignId: ['campaign1'],
}}
// ...optional Event Handlers, please see Event Handlers page
/>EngineSDK(
channel: 'your-channel',
zone: 'your-zone',
bearerToken: '{your_token}',
productTypes: const [engine.ProductType.creditCard],
personalInformation: engine.LeadPersonalInformation(/* ...any data you don't want to ask for again */),
clientTags: const {
'clientId': ['client1'],
'trafficsource': ['email'],
'campaignId': ['campaign1'],
},
onExit: (_) {},
// ...optional Event Handlers, please see Event Handlers page
)Supported Client Tag Keys for Reporting
Last updated
Was this helpful?