Strivacity¶

About¶
Strivacity is a cloud-native Customer Identity and Access Management (CIAM) platform designed to unify security and user experience. It provides a low-code orchestration engine that enables brands to build, manage, and scale secure registration and login journeys without heavy custom coding. By balancing sophisticated fraud prevention with a frictionless user interface, Strivacity helps organizations increase customer conversion while ensuring data privacy and regulatory compliance.
Product Details¶
Product Type: Identity and Access Management
Product Tier: Tier III
Integration URL: Strivacity Documentation
Integration Method: API
Log Guide: Strivacity Log event schema
Parser Details¶
Log Format: JSON
Expected Normalization Rate: 99%-100%
Data Label: STRIVACITY
UDM Fields (list of all UDM fields leveraged in the Parser):
| Log File Field | UDM Field |
|---|---|
| actor.accountId | principal.resource.id |
| actor.ip | principal.ip |
| actor.location.properties.city | principal.location.city |
| actor.location.properties.country | actor.location.properties.country |
| actor.location.properties.state | principal.location.state |
| location.geometry.coordinates.0 | principal.location.region_coordinates.latitude |
| location.geometry.coordinates.1 | principal.location.region_coordinates.longitude |
| network.http.user_agent | principal.location.city |
| actor.userName | principal.user.userid |
| actorApplication.name | principal.application |
| startTimestamp | additional.fields |
| endTimestamp | additional.fields |
| eventId | metadata.product_log_id |
| loginSessionId | network.session_id |
| subject.accountId | target.resource.id |
| target.user.userid | subject.userName |
| labels | about.user.attribute.labels |
Product Event Types¶
| Product Event | UDM Event |
|---|---|
| Audit | GENERIC_EVENT |
Log Sample¶
{"actor": {"accountId": "f34b9e0c-1234-4d5e-9abc-0a1b2c3d4e5f", "ip": "10.10.10.1", "location": {"geometry": {"coordinates": [34.052235, -118.243683], "type": "Point"}, "properties": {"city": "Los Angeles", "country": "United States", "countryCode": "us", "state": "California"}, "type": "Feature"}, "store": "SHELTER_TEST", "userAgent": "Mozilla/5.0 (compatible; TestAgent/1.0)", "userName": "user@example.com"}, "actorApplication": {"id": "8a1b2c3d-4e5f-6789-abcd-0123456789ab", "name": "Test App"}, "endTimestamp": "2025-12-21T14:58:21.000Z", "eventId": "e8b5a51f-6c4d-4f2e-9a12-3b4c5d6e7f80", "labels": ["success:login"], "loginSessionId": "a1b2c3d4-5678-90ab-cdef-1234567890ab", "startTimestamp": "2025-12-21T14:58:03.000Z", "subject": {"accountId": "f34b9e0c-1234-4d5e-9abc-0a1b2c3d4e5f", "accountInfo": {}, "store": "SHELTER_TEST", "userName": "user@example.com"}, "type": "customerFlow"}
Sample Parsing¶
```text principal.resource.id = "f34b9e0c-1234-4d5e-9abc-0a1b2c3d4e5f" principal.ip = "10.10.10.1" principal.location.city = "Los Angeles" principal.location.country_or_region = "United States" principal.location.state = "California" principal.location.region_coordinates.longitude = "0.0" principal.location.region_coordinates.latitude = "0.0" network.http.user_agent = "Mozilla/5.0 (compatible; TestAgent/1.0)" principal.user.userid = "user@example.com" principal.application = "Test App" additional.fields["startTimestamp"] = "2025-12-21T14:58:03.000Z" additional.fields["endTimestamp"] = "2025-12-21T14:58:21.000Z" metadata.product_log_id = "e8b5a51f-6c4d-4f2e-9a12-3b4c5d6e7f80" network.session_id = "a1b2c3d4-5678-90ab-cdef-1234567890ab" target.resource.id = "f34b9e0c-1234-4d5e-9abc-0a1b2c3d4e5f" target.user.userid = "user@example.com" about.user.attribute.labels["labels_0_auth"] = "success:login" ````