Integration Configuration

Explains how insurance eligibility integrations are configured and managed within the system.

Overview

Insurance eligibility verification and claim submission rely on configuration stored within the system database.

These configurations define the connection parameters required to communicate with external insurance processors.

Currently the system supports integration with the Inmediata eligibility verification service.


Configuration Tables

Integration configuration is stored primarily in the following tables:

  • labIntegration
  • developerAuthentication

These tables contain credentials and connection details used during eligibility verification and claim processing.


labIntegration Table

The labIntegration table stores integration configuration for external services.

The column integrationExtraDetails contains vendor configuration in JSON format.

Example Configuration

{
  "sender_id": "660964025",
  "sender_code": "30",
  "receiver_id": "660610220",
  "receiver_code": "30",
  "edi_url": "https://www.inmediata.com/ws/EdiFileTransfer/",
  "username": "username",
  "password": "password",
  "auth_token": "Basic {token}",
  "request_url": "https://www.inmediata.com/webservices/EdiTransfer/EdiFileTransfer.asmx",
  "insurance_with_group_number": ["660396197P"]
}

On this page