Required Parameters
These parameters are mandatory for successful SDK initialization.
| Parameter | Type | Description |
| userId | string | Unique identifier for the user. Must be at least 2 characters. Used for tracking progress, analytics, and personalization |
| company | string | Company name associated with the API key. Determines theme defaults and content access |
| key | string | API key for authentication. Required for all API calls and content access |
SDK Support: All platforms support these as direct parameters.
Required Parameters Setup
1// Direct SDK support
2let kinestex = KinesteXAIKit(
3 apiKey: "YOUR_API_KEY",
4 companyName: "YOUR_COMPANY",
5 userId: "unique-user-id"
6)