# Get onboarding URL for an employee Endpoint: GET /api/v1/employees/{employee_id}/onboarding Version: 0.0.1 Security: user_session, form_session, component_session, component_token, api_token ## Path parameters: - `employee_id` (string, required) Employee Identifier ## Query parameters: - `assignee_type` (string) Type of assignee for onboarding tasks. Defaults to "employee". Enum: "employee", "employer" - `task_ids` (string) Comma-separated list of task IDs - `locale` (string) Locale code (e.g. en, es, fr). If not provided, the language will be selected automatically based on candidate browser language setting and form language availability. - `redirect_to` (string) Redirect to URL to send the user after onboarding is complete - `active_theme_id` (string) Custom theme for the onboarding form ## Response 200 fields (application/json): - `url` (string, required) ## Response 401 fields (application/json): - `message` (string, required) - `_tag` (string, required) Enum: "Unauthorized" ## Response 403 fields (application/json): - `message` (string, required) - `_tag` (string, required) Enum: "Forbidden" ## Response 404 fields (application/json): - `message` (string, required) - `_tag` (string, required) Enum: "ResourceNotFoundError"