Supporting Info
Attach supporting information (vital signs, attachments, lab results, clinical notes, etc.) to pre-authorization requests and claims. Supporting info records carry structured clinical data that the Najeeb AI Engine uses during adjudication.
Supporting info can also be submitted inline as part of the prior authorization creation body using the supporting_info field. Use the endpoints below when you need to attach supporting information to an existing pre-auth or claim after it has been created.
For more information, see the Supporting Info Object.
Base URL
https://api.{client_namespace}.najeeb.ai/v4.0/health
Authentication
All API requests are authenticated using an API key passed in a dedicated header:
access-key: YOUR_API_KEY
For access key provisioning, please contact Najeeb support.
API Endpoints
Create Supporting Info for Prior Authorization
POST /supporting-info/create-for-preauth
Creates a new supporting information record linked to a pre-authorization request. The prior authorization is identified by its transaction_id (the same identifier used when creating the pre-auth).
Request Headers
| Header | Type | Required | Description |
|---|---|---|---|
access-key | string | Yes | API key for authentication |
Content-Type | string | Yes | Must be application/json |
Request Body Parameters
| Parameter | Type | Required | Description | Accepted Values |
|---|---|---|---|---|
transaction_id * | string | Yes | Transaction ID of the prior authorization to attach this record to (same value used when creating the pre-auth) | Alphanumeric string, 1-255 characters |
sequence_number | number | No | Sequence number for ordering multiple supporting info entries | Integer, minimum 1 |
type | string | No | Type of supporting information (e.g. "MEDICAL_RECORD") | String, max 255 characters |
code | string | No | NPHIES supporting-info code | See Supported Codes table |
value | string | No | Value of the supporting information. When code is attachment, pass base64-encoded file content | String, max 1000 characters |
file_name | string | No | Original file name when code is attachment (used to infer extension, e.g. "lab-result.pdf") | String, max 255 characters |
unit | string | No | Unit of measurement (e.g. "mmHg", "kg", "cm") | String, max 50 characters |
start_date * | string | Yes | Start date for the information | ISO 8601 format: YYYY-MM-DDTHH:mm:ss.sssZ |
end_date * | string | Yes | End date for the information | ISO 8601 format: YYYY-MM-DDTHH:mm:ss.sssZ |
value_url | string | No | URL to additional information or an external document | Valid HTTP/HTTPS URL, max 500 characters |
Supported Codes
The code field accepts any of the following NPHIES supporting-information codes:
| Code | Description |
|---|---|
INFO | Information |
ONSET | Onset |
ATTACHMENT | Attachment |
MISSING_TOOTH | Missing Tooth |
EMPLOYMENT_IMPACTED | Employment Impacted |
LAB_TEST | Lab Test |
REASON_FOR_VISIT | Reason for Visit |
DAYS_SUPPLY | Days Supply |
VITAL_SIGN_WEIGHT | Weight |
VITAL_SIGN_SYSTOLIC | Systolic |
VITAL_SIGN_DIASTOLIC | Diastolic |
VITAL_SIGN_HEIGHT | Height |
ICU_HOURS | ICU Hours |
VENTILATION_HOURS | Ventilation Hours |
CHIEF_COMPLAINT | Chief Complaint |
BIRTH_WEIGHT | Birth Weight |
TEMPERATURE | Temperature |
PULSE | Pulse |
OXYGEN_SATURATION | Oxygen Saturation |
RESPIRATORY_RATE | Respiratory Rate |
MORPHOLOGY | Morphology |
LAST_MENSTRUAL_PERIOD | Last Menstrual Period |
TREATMENT_PLAN | Treatment Plan |
PATIENT_HISTORY | Patient History |
PHYSICAL_EXAMINATION | Physical Examination |
HISTORY_OF_PRESENT_ILLNESS | History of Present Illness |
ADMISSION_WEIGHT | Admission Weight |
ESTIMATED_LENGTH_OF_STAY | Estimated Length of Stay |
INVESTIGATION_RESULT | Investigation Result |
SIGNIFICANT_SIGNS | Significant Signs |
GENERAL_EXAMINATION | General Examination |
VITAL_INFORMATION | Vital Information |
OTHER | Other |
Example Request
- cURL
- JavaScript
- Python
curl -X POST \
"https://api.{client_namespace}.najeeb.ai/v4.0/health/supporting-info/create-for-preauth" \
-H "access-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"transaction_id": "550e8400-e29b-41d4-a716-446655440000",
"sequence_number": 1,
"type": "MEDICAL_RECORD",
"code": "VITAL_SIGN_SYSTOLIC",
"value": "120",
"unit": "mmHg",
"start_date": "2024-01-15T10:30:00.000Z",
"end_date": "2024-01-15T10:30:00.000Z"
}'
const response = await fetch(
'https://api.{client_namespace}.najeeb.ai/v4.0/health/supporting-info/create-for-preauth',
{
method: 'POST',
headers: {
'access-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
transaction_id: '550e8400-e29b-41d4-a716-446655440000',
sequence_number: 1,
type: 'MEDICAL_RECORD',
code: 'VITAL_SIGN_SYSTOLIC',
value: '120',
unit: 'mmHg',
start_date: '2024-01-15T10:30:00.000Z',
end_date: '2024-01-15T10:30:00.000Z',
}),
}
);
const data = await response.json();
console.log(data);
import requests
response = requests.post(
'https://api.{client_namespace}.najeeb.ai/v4.0/health/supporting-info/create-for-preauth',
headers={
'access-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
json={
'transaction_id': '550e8400-e29b-41d4-a716-446655440000',
'sequence_number': 1,
'type': 'MEDICAL_RECORD',
'code': 'VITAL_SIGN_SYSTOLIC',
'value': '120',
'unit': 'mmHg',
'start_date': '2024-01-15T10:30:00.000Z',
'end_date': '2024-01-15T10:30:00.000Z',
},
)
result = response.json()
print(result)