Across 2 paths, the API surfaces 4 operations — 1 DELETE, 1 GET, 2 POST. Each is listed below with its method, path, parameters, and response codes.
Profiles 4
Operations for creating, reading, updating, and deleting visitor profiles.
POST
/profiles
Create Profile
createProfile2 paramsbody→ 200400404429500
GET
/profiles/{profileId}
Get Profile
getProfile2 params→ 200404500
POST
/profiles/{profileId}
Update Profile
updateProfile3 paramsbody→ 200400404429500
DELETE
/profiles/{profileId}
Delete Profile
deleteProfile1 param→ 200404500
Schemas 12
The contract defines 12 schemas that model the data the API accepts and returns. The most detailed are Profile (9 properties), Event (7 properties), Location (6 properties), Session (5 properties). Each schema is shown below with its type and property counts.
Session
object
Session-level metadata for the visitor.
5 properties
ProfileResponse
object
Standard envelope response containing a profile with resolved experiences and changes.
3 properties
DeleteResponse
object
Response envelope for a successful delete operation.
3 properties
ProfileRequestOptions
object
Optional configuration for the profile request.
1 property
Event
object
A behavioral or identity event associated with a visitor profile.
7 properties1 required
Location
object
Geographic location resolved from the visitor's IP address.
6 properties
ProfileRequest
object
Request body for creating or updating a visitor profile.
2 properties1 required
ApiError
object
Error response envelope.
3 properties2 required
Profile
object
A visitor profile containing identity, behavioral, and session data used for personalization.
9 properties
Change
object
A content change to apply for a personalized experience, keyed by component.
4 properties
ProfileOnlyResponse
object
Response envelope containing only the profile (no experiences or changes).
3 properties
Experience
object
A resolved experience with the variant the visitor should receive.
4 properties
Specification
The full machine-readable OpenAPI contract behind this narrative.