Server side integration
Server-side summary for the Kota Embed integration
This page is a concise checklist of what your backend must do to support the Embed SDK. For step-by-step guidance, jump into the linked deep-dives below.
Want to jump straight into the API reference?
Check out our API reference.
Authentication & idempotency (quick reference)
Authenticate with API keys and include idempotency keys on POST requests.
- Guide: Authentication & Idempotency
- API docs: Authentication · Idempotent requests
What your server must do
- Create employers and employees early, then store
employer_idandemployee_idreceived from Kota. - Issue short‑lived Embed Session tokens and return them to your frontend for correctly authenticating with Embed.
- Receive and process webhooks, especially action‑required events.
- Support offboarding flows (with additional safeguards for employees).
Create employers and employees
Create employers first, then employees referencing the employer_id. Send these records as soon as they’re available to avoid delays while Kota completes regulatory checks.
If the employer and their employees are sent to Kota immediately before the employer accesses the Embedded UI, it’s likely that some employees will not have been processed yet, delaying the employer’s ability to proceed until all employees are processed.
- Detailed guide: Managing employers and employees
- API references: Employer APIs · Employee APIs
Support offboarding
Employer offboarding removes Embedded UI access but does not cancel employees’ policies automatically. Employee offboarding will cancel policies and must be handled with care.
- Safeguard: If triggered in error and before the effective date, you can cancel employee offboarding.
Issue an Embed Session token
Embed sessions provide secure, time-limited access to Kota’s UI components:
- Employer sessions - Allow employers to set up benefits and view group policy details
- Employee sessions - Allow employees to enroll in benefits, manage dependants, and view policy details
Each session token:
- Expires after a set time (included in the API response)
- Can only be used for one employer or employee
- Should be generated fresh each time a user accesses Kota functionality
Generate Tokens
Use the Embed Session API to create tokens. Once generated, pass the token to your frontend to initialize the SDK.
Learn more about frontend implementation
Generate an employer token:
employer_id and employee_idAn example employee token request:
Handle webhooks and required actions
Configure a webhook receiver to process asynchronous events.
- Deep‑dive: Webhooks and events
- API overview: Events & Webhooks
- Examples: Working with webhooks
action_required events, the reason and reason_description (example) properties can be sent directly as customer communications as the title and body of a message while the due_at property should be used to convey the deadline to the customer. Advanced: Contribution reporting
Retrieve employer/period reports for accurate payroll, including employer vs employee portions, adjustments, and pro‑rations.
- Guide: Contribution reporting
- API: Contribution Reports

