Lincoln National Enrollment API

The Enrollment API from Lincoln National — 1 operation(s) for enrollment.

OpenAPI Specification

lincoln-national-enrollment-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Lincoln Financial LincSmart APIs Enrollment API
  description: Lincoln Financial provides LincSmart APIs for benefits administration integration. The platform includes Enrollment, EOI (Evidence of Insurability), and Plan Design APIs that enable real-time data sync between Lincoln Financial and benefits administration platforms such as ADP, Workday, Businessolver, bswift, and Benefitfocus.
  version: 1.0.0
  contact:
    name: Lincoln Financial
    url: https://www.lincolnfinancial.com
servers:
- url: https://www.lincolnfinancial.com
  description: Lincoln Financial
tags:
- name: Enrollment
paths:
  /enrollment:
    post:
      operationId: syncEnrollment
      summary: Sync Enrollment Data
      description: Syncs employee elections and demographic information in real time, eliminating the need for weekly batch files.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                employeeId:
                  type: string
                  description: The employee identifier.
                elections:
                  type: array
                  items:
                    type: object
                    properties:
                      benefitType:
                        type: string
                      coverageAmount:
                        type: number
                      effectiveDate:
                        type: string
                        format: date
      responses:
        '200':
          description: Enrollment data synced successfully.
        '401':
          description: Unauthorized.
      tags:
      - Enrollment