Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<add type="System.String" name="<property_name>" customProviderData="S4SS4SLead|[lead_attribute_schema_name]|[propertyType]"/> 

...

Attribute

Description

Name

The unique name of a property.

Type

The .NET type of a property. This is the type a property will have in the ASP.NET environment.

Typically all S4S properties will have “System.String” as the type to correctly display in the Sitecore Edit User Profile screen.

customProviderData

Any data required for the provider serving this property. In this case, S4S S4SLead means that this property is to be handled by the S4S Lead provider. The lead_attribute_schema_name specifies the name of the corresponding Salesforce lead entity attribute. The propertyType defines the type of the lead property. The S4Sprovider expects the pipe separator (|) between the attribute parts.

...