Send Optimizely Data Platform data using Real-Time Segments for Feature Experimentation for the Java SDK
Describes the sendODPEvent
method, which sends Optimizely Feature Experimentation event data to the Optimizely Data Platform (ODP) server.
Prerequisites
You must configure Real-Time Segments for Feature Experimentation before sending events to ODP from Feature Experimentation.
Minimum SDK Version
4.0.0
Description
The Optimizely Client extension method sendOdpEvent
lets you send data to the ODP server. You can then use this data to analyze user behavior and optimize experiences across different channels and touchpoints.
Use the sendOdpEvent
method to
- Merge or stitch users together and determine which event is associated with which customer.
- Send various types of events and actions, such as pageviews, clicks, form submissions, and others. You can include additional data to provide more context and information about the event being tracked.
For example, by connecting an email address identifier with a fs_user_id
identifier, you can use the sendOdpEvent
method to send events that are associated with both identifiers. This enables you to track and analyze the behavior of a specific user across different touchpoints and devices.
You cannot create or update user profile data like name or address with sendODPEvent
. Instead, you can use the ODP Create and update customers API endpointor ODP UI to manage customer profiles.
Sending events to Optimizely Data Platform
Note
- The Java SDK discards the event immediately if there are any errors (
sdkNotReady
,odpNotIntegrated
, orodpNotEnabled
).- The Java SDK discards all events (implicit or explicit) with a warning log if requested before the datafile is ready. The datafile should be fully ready in the Java SDK before you create user contexts and accept decision requests.
Parameters
This table lists the required and optional parameters for the sendODPEvent
method.
Parameter | Type | Description |
---|---|---|
type | String | The type of event to be sent and is "fullstack" for all Java SDK-generated events if not specified. |
action required | String | Specifies the subcategory of the event type used to track the app and user lifecycle. |
identifiers | HashMap<String, String> | A key-value map of user identifiers. Must have at least one key-value pair. |
data | HashMap<String, Any> | The event data in a key-value map. The value can be any type (string, number, or boolean.) Although allowed, null values are empty strings. The Java SDK adds default event data to the given data dictionary. Sending the same key when creating your HashMap overwrites the default data values.
|
Returns
This method sends event data to the Optimizely Data Platform (ODP) server. It does not provide return values.
Example
sendODPEvent(String type, String action, Map<String, String> identifiers, Map<String, Object> data)
Map<String, String> identifiers = new HashMap<>();
identifiers.put("fs_user_id", "user123");
identifiers.put("email", "[email protected]");
Map<String, Object> data = new HashMap<>();
data.put("item", "shirt");
data.put("price", 50.00);
optimizely.sendODPEvent("fullstack", "purchased", identifiers, data);
The following diagram shows the network calls between your application, the Java SDK, and the ODP server when calling the sendODPEvent
method:
- Your application calls the
sendODPEvent
method. - The Java SDK makes a POST request to ODP.
- ODP responds with acknowledgment or relevant error.
Source files
The language and platform source files containing the implementation for Java are available on Github.
Updated 7 months ago