API Reference
Authentication
const authToken = Buffer.from(`${WRITE_CODE}:`).toString('base64');
// Header: Authorization: Basic <authToken>import base64
auth_token = base64.b64encode(f'{WRITE_CODE}:'.encode()).decode()
# Header: Authorization: Basic <auth_token>auth_token = Base64.strict_encode64("#{write_code}:")
# Header: Authorization: Basic <auth_token>Base URLs
Purpose
URL
Endpoints
1. Identify User
Field
Type
Required
Description
2. Group (Company/Organization)
Field
Type
Required
Description
3. Track Custom Event
Field
Type
Required
Description
4. Forward SDK Events (Batch)
Event Schemas
Raw Event (Auto-Captured Click)
Pushed Event (Custom)
Page View Event
DOM Snapshot Node
Response Codes
Code
Meaning
Rate Limits
SDK Methods Reference
EventCollector
Configuration Options
React Hook
Next Steps
Last updated