Feature - API Document - Latest
Feature - API Document - Latest
TABLE OF CONTENTS
1. Introduction .............................................................................................................................. 5
2. Authentication API .................................................................................................................... 5
3. Patient Demographics API ........................................................................................................ 6
3.1. Patient Registration and Updation API ............................................................................ 6
3.2. Search Patients API ........................................................................................................ 16
4. Patient Insurance API .............................................................................................................. 19
4.1. Insurance Master Search API ......................................................................................... 19
4.2. Search Patient Insurance API ......................................................................................... 21
4.3. Add Patient Insurance API.............................................................................................. 22
4.4. Update Patient Insurance API ........................................................................................ 26
5. Patient Appointments API ...................................................................................................... 26
5.1. Location Search API ........................................................................................................ 26
5.2. Medics/Provider Search API........................................................................................... 28
5.3. Encounter/visit Type Search API .................................................................................... 30
5.4. Available appointment slots API .................................................................................... 31
5.5. Add Appointment API .................................................................................................... 34
5.6. Update Appointment API ............................................................................................... 35
5.7. Delete Appointment API ................................................................................................ 37
6. Patient Document List API ...................................................................................................... 38
6.1. Patient Document List GET API ...................................................................................... 38
6.2. Patient Document List DELETE API................................................................................. 41
6.3. Patient Document List Upload API ................................................................................. 42
6.4. Patient Document List Download API ............................................................................ 43
7. Patient Alert API ...................................................................................................................... 44
7.1. Add/Update Patient Alerts API44
7.2. Search/Delete Patient Alerts API .................................................................................. 45
8. Charge Import API ................................................................................................................... 47
9. Insurance Adjuster Master API ............................................................................................... 48
9.1. Insurance Adjuster GET API............................................................................................ 48
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
2
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
3
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
4
Feature - API Document
1. INTRODUCTION
This document covers the details of various APIs supported by Bizmatics for PrognoCIS EHR
and Practice Management products.
The APIs covered in this document include:
• Patient Demographics - Search/Add/Update
• Patient Insurance - Search/Add/Update
• Appointment - Search/Add/Update
• Document List - Search Patient
• Patient Alert - Search/Add/Update
• Import Charge
2. AUTHENTICATION API
HTTP Method POST
End Point:
https://{Clinic_Url}/prognocis/apis/{poolname}/authenticate
HTTP Headers
x_api_key: B!2M@T!CS
HTTP Status Code, Error/Success Codes and Error/Success Messages
Response JSON :
{
"jwt": {JWT KEY}
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
5
Feature - API Document
Required(R)/
Param Name Data Type Description
Optional(O)
Unique Patient Id at vendor side. This will
patient_ext_id O String be used as Patient Matching Criteria.
Patient External ID.
first_name R String Patient's First Name
last_name R String Patient's Last Name
middle_name O String Patient’s Middle Name
Patient's Gender. Possible values are M /
gender R String
F / U.
date_of_birth R Date Patient’s Date of Birth (non-mandatory)
Patient’s Email. (login credentials won't
email_address O String
be sent if email is blank)
This parameter value populates the Home Tel
phone_number O String
field in Prognocis
This parameter value populates the Cell
tel_cell O String Phone field in Prognocis
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
6
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
7
Feature - API Document
Note:
• Street, City, Zip1 and State are mandatory fields to add address while registering patient.
If these fields are not present, we will register a patient but won’t add address and
appropriate information will be sent in response.
• Allow text messages on cell phone is not implemented via API i.e. the Allow text messages
on cellphone checkbox remains unchecked by default.
Request JSON:
{
"first_name": "Nilesh",
"middle_name": "",
"last_name": "UniqueFemale",
"gender": "F",
"date_of_birth": "1987-08-21",
"phone_number": "3111111111",
"email_address": "[email protected]",
"pat_type": 0,
"provider_id": 41702,
"city": "Birmingham",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
8
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
9
Feature - API Document
Response JSON:
e.g :
"response_codes": [
"response_code": 210,
],
"patient_chart_no": "SCL010004946"
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
10
Feature - API Document
"date_of_birth": "1994-08-21",
"phone_number": "3111111111",
"email_address": "[email protected]",
"pat_type": 0,
"provider_id": 41702,
"city": "Birmingham",
"address_line1": "St Lane",
"address_line2": "Opp George Street",
"state": "NY",
"country": "USA",
"zip1": "35211",
"zip2": "",
"Udf_Type":"Patient",
"udf":
{
"text": [
"MyUDF Text1",
"MyUDF Text2",
"MyUDF Text3",
"MyUDF Text4",
"MyUDF Text5",
""
],
"num": [
1,
2
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
11
Feature - API Document
],
"fraction": [
1.06,
2.56,
5.06
],
"dateTime": [
"04-30-2024 02:06:00",
"05-01-2024 00:00:00"
],
"date": [
"04-30-2024 ",
"05-01-2024"
],
"amount": [
25,
100,
55,
56
]
}
}
Response JSON :
e.g :
{
"response_code": 209,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
12
Feature - API Document
Required(R)/
Param Name Data Type Description
Optional(O)
Unique Patient Id at vendor side. This will
patient_ext_id O String be used as Patient Matching Criteria.
Patient External ID.
first_name R String Patient's First Name
last_name R String Patient's Last Name
middle_name O String Patient’s Middle Name
Patient's Gender. Possible values are M /
gender R String
F / U.
date_of_birth R Date Patient’s Date of Birth (non-mandatory)
provider_id All characters should be number
O Integer
Patient’s Email. (login credentials won't
email_address R String
be sent if email is blank)
phone_number O String Patient’s Tel. Cell Phone
pat_type R Integer All characters should be number
Error/Success
HTTP Status Code Error/Success Message
Code
If only one param says first name or last
208 400
name is sent, then.
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
13
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
14
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
15
Feature - API Document
Request Parameters:
Request:
{
"first_name":"John",
"last_name":"Dummy",
"date_of_birth":"1987-08-19",
"Phone_number":"1234567",
"email_address":"[email protected]"
"gender":"M"
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
16
Feature - API Document
"pat_type": 34748,
"patient_chart_no": "SCL010004921",
"patient_ext_id": "Test025123"
}
This will return a List of Matching Patients.
Response:
"totalRecords": 1,
"pageNumber": 1,
"numberOfRecords": 1,
"totalPages": 1,
"content": [
"email": "",
"patient_ext_id": "EXT123",
"first_name": "Jane",
"middle_name": "",
"last_name": "Doe",
"gender": "F",
"date_of_birth": "1982-01-01",
"phone_number": "",
"email_address": "",
"pat_type": 0,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
17
Feature - API Document
"patient_chart_no": "SCL24528",
"patient_id": 210767,
"provider_id": 41702,
"status": "AC"
Returns 100 records in one response. If there are more than 100 records, then it returns next
page indicator.
First lists exact match and remaining records after that.
Note: A provider_id in Response section has been added in the Search Patients API.
Required(R)/
Param Name Data Type Description
Optional(O)
Patients First Name (At least 2
first_name O String
characters required)
Patients Last Name (At least 2
last_name O String characters required)
Patients Gender
gender O String
date_of_birth O Date Patients Date of Birth
email_address O String Patients Email.
phone_number O String Patients Tel. Cell Phone
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
18
Feature - API Document
Response JSON
[
{
"insurance_id": 318,
"company_name": " Third Party Insurance ",
"carrier": "SSS",
"ext_id": "IMA35",
"main_insurance": "",
"AR_group_name": "Commercial",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
19
Feature - API Document
"claim_filing_code": "CI",
"claim_filing_name": " Third Party Insurance ",
"address_line1": "PO BOX 5645",
"address_line2": "",
"city": "Kingston",
"state": "New York",
"zip_code": "12345"
}
]
Required(R)/
Param Name Data Type Description
Optional(O)
insurance_id O numeric Patients Insurance Id
Patients First Name (At least 2
company_name O String
characters required)
Patients Last Name (At least 2
address_line1 O String
characters required)
address_line2 O String Patients Gender
city O Date Patients Date of Birth
state O String Patients Email.
zip_code O numeric Patients Tel. Cell Phone
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
20
Feature - API Document
Response JSON
[
{
"patient_insurance_id": 18,
"insurance_name": "Gallagher Bassett",
"plan_type": "CHAMP",
"plan_name": "PNAME",
"group_no": "G02",
"group_name": "GNAME",
"subscriber_id": "4564645",
"start_date": "2021-01-01 00:00:00.0",
"expiry_date": "2021-12-12 00:00:00.0",
"status": "1"
}
]
Request Details:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
21
Feature - API Document
Required(R)/
Param Name Data Type Description
Optional(O)
Patients First Name (At least 2
company_name O String
character required)
Patients Last Name (At least 2
address_line1 O String
character required)
address_line2 O String Patients Gender
patient_id R numeric All character Should be number.
Patients' subscriber_id
subscriber_id O String
Response Codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
22
Feature - API Document
"plan_no": "P564",
"plan_name": "PNAME",
"group_no": "G020",
"group_name": "GNAME",
"subscriber_id": "214564645",
"start_date": "2021-01-01",
"expiry_date": "2021-12-15",
"status": "1",
"subs_relation": "Parent",
"subs_fname": "",
"subs_mname": "",
"subs_lname": "",
"subs_dob": "",
"subs_add_line1": "AAA",
"subs_add_line2": "BBB",
"subs_add_city": "CCC",
"subs_add_state": "",
"subs_add_zip": "1452",
"subs_add_zip2": "1235",
"copay" : 1,
"classified_as":99,
"employment_status" : 7069,
"medicare_sec_code" : 41
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
23
Feature - API Document
Response JSON
{
"patient_insurance_id": 185942,
"message": "Insurance Added Successfully."
}
Request Details:
Required(R)/Opt
Param Name Data Type Description
ional(O)
patient_id R Numeric Patient Id
Numeric Master insurance id
master_insurance_id R (received from master
insurance search)
insurance_external_id O String
patient_insurance_type O String Plan Type (insurance Type)
plan_no O String Plan Number
plan_name O String Plan Name
group_no O String Group Number
group_name O String Group Name
subscriber_id R String Subscriber Id
start_date O Date Start Date
expiry_date O Date Expiry Date
status O String Status
subs_relation O String Relation with the Subscriber
subs_fname O String First Name
subs_mname O String Middle Name
subs_lname O String Last Name
subs_dob O Date Date of Birth
subs_add_line1 O String Address Line 1
subs_add_line2 O String Address Line 2
subs_add_city O String City
subs_add_state O String State
subs_add_zip O String Zip Code
subs_add_zip2 O String Zip Code 2
1 - Healthcare
classified_as O int 60 - DMERC
70 - MotorAcc
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
24
Feature - API Document
80 - PersonalAcc
90 - WorkerComp
99 - Attorney
Response Codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
25
Feature - API Document
Request Details:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
26
Feature - API Document
Request
{
"location_id": 10,
"location_name": "Brentwood",
"location_code": "BRENTWOOD1"
}
Response
[
{
"location_id" : 2,
"location_name" : "West Bay Clinic",
"location_code" : "CL"
},
{
"location_id" : 3,
"location_name" : "Location 5",
"location_code" : "DASC"
}
]
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
27
Feature - API Document
Required(R)/Opt
Param Name Data Type Description
ional(O)
location_id O Integer Location id
String Location Name (At least 2
location_name O
characters required)
Location Code (At least 2
location_code O String
characters required)
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
28
Feature - API Document
"first_name": "Lauren",
"last_name": "Hunter",
"type": "DR",
"provider_id": 128,
"provider_name": "Lauren Hunter, D.C."
}
]
Request Details:
Required(R)/Opti
Param Name Data Type Description
onal(O)
first_name O String Medics first name
last_name O String Medics last name
Comma separated medics ex:
["ST","DR"]
Possible values:
DR - Doctor
types O String ST - staff
MA-Medical assistant
RN - Nurse
BL - Biller
RS – Resource
RD – referring provider
Response Codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
29
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
30
Feature - API Document
Request Details:
Required(R)/
Param Name Data Type Description
Optional(O)
enc_type_code O String Encounter type code
Encounter type name (At least 2
enc_name O String
characters required)
Response Codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
31
Feature - API Document
"page_no": 1,
"provider_ids": [128, 146, 149],
"location_ids": [2, 4],
"enc_type_ids": [5, 58],
"start_date": "2021-10-21",
"end_date": "2021-10-21",
"start_time" : "00:00:00",
"end_time" : "23:50:00"
}
Response:
[
{
"provider_id" : 41672,
"start_time" : "2021-08-18T23:30:00",
"end_time" : "2021-08-18T23:45:00",
"available_enc_types" : [ {
"available_enc_type_id" : "5"
}],
"location_id" : "CL"
},
{
"provider_id" : 128,
"start_time" : "2021-08-18T00:00:00",
"end_time" : "2021-08-18T00:15:00",
"available_enc_types" : [{
"available_enc_type_id" : "20244"
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
32
Feature - API Document
}, {
"available_enc_type_id" : "102"
}, {
"available_enc_type_id" : "20231"
}],
"location_id" : "CL"
}
]
Request Details:
Required(R)/Opt
Param Name Data Type Description
ional(O)
Provider Id - Can have multiple
Provider_ids O int values or ALL or blank. If blank we
will consider ALL.
Start date (If not provided, then
start_date O String
today’s date will be considered).
End date. Currently equals to
end_date O String start_date and we are working on
providing multi-days support.
Start time in minutes. If not present
start_time O String
then we will consider 00 mins.
End time in minutes If not present
end_time O String
then we will consider the whole day.
location_ids O int
enc_type_ids O int
Page Number. If not present then by
page_no O Integer
default 1 will be considered.
Response Codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
33
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
34
Feature - API Document
Request Fields:
Required(R)/Optio
Param Name Data Type Description
nal(O)
Request JSON:
{
"appointment_id": “5272366”,
"visit_type": 5,
"reason": "New Reson For Change at 20_05",
"location_id": 2,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
35
Feature - API Document
"provider_id": 10583,
"patient_id": "258949",
"start_time": "2024-06-03T04:00:00",
"duration": 120
}
Response JSON:
{
"Updated_app_id": 5273341,
"message": "Appoinment updated successfully",
"successful": "true"
}
Note:
Required(R)/Optio
Param Name Data Type Description
nal(O)
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
36
Feature - API Document
Required(R)/Optio
Param Name Data Type Description
nal(O)
Note:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
37
Feature - API Document
• Delete Appointment API needs only appointment_id of Appointment booked for the
patient.
• The Updated Appointment service returns a response with updated_app_id, which
includes the rescheduled Appointment_Id.
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
38
Feature - API Document
"document_catagory_name": ""
},
{
"document_id": 218,
"patient_id": 2,
"document_date": "2021-07-07 00:00:00.0",
"dcmnt_type": "SCN",
"document_type_name": "Procedure Forms",
"document_subject": "",
"document_catagory_name": "PT - Plan and Recommendation"
}
]
Request Fields:
Required(R)/Opt
Param Name Data Type Description
ional(O)
patient_id R String Template Type . Details below
from_date O String Case No
upto_date O String Alert text
Document type to search. Ex:
document_type O String
["PRA","RDA"]
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
39
Feature - API Document
Error codes:
Type of documents:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
40
Feature - API Document
{
"patient_id" :145258,
"document_id": 179926
}
Response JSON
{
"response_message": " DOCUMENT DELETED SUCCESSFULLY."
}
Request Fields:
Required(R)/Opt
Param Name Data Type Description
ional(O)
patient_id R Integer Patient Id
document_id R Integer Document Id
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
41
Feature - API Document
{
"patient_id":145258,
"category_id": 21430,
"description": "test @@@@ file",
"file_name":"test123.txt"
}
Response JSON
{
"document_id": 180328,
"message": "Document uploded successfully."
}
Request Fields:
Required(R)/Opt
Param Name Data Type Description
ional(O)
patient_id R Integer Patient ID
category_id": O Integer Category ID
description O String File Description
file_name R String File Name
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
42
Feature - API Document
{
"document_ids": [180328]
}
Response JSON
[
{
"document_id": 180328,
"file_path": "P:/IPM_DOC_LIST/180328_2023-07-25.txt"
}
]
Request Fields:
Required(R)/Opt
Param Name Data Type Description
ional(O)
document_ids R Integer[] Document Ids
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
43
Feature - API Document
Request JSON:
POST request to add Alert and PUT request to update Alerts
{
"patient_id":12345,
"alert_text":"alert content",
"effective_date":"2021-01-01",
"upto_date":”2021-01-01”,
"show_alert_on": ["A","E"]"
}
Response JSON
{
“alert_id”: 12345
}
Update Alert
HTTP Method PUT
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
44
Feature - API Document
Request JSON:
{
"alert_id": 5,
"alert_text": "test avinash update",
"from_date": "01-01-2021",
"upto_date": "12-31-2021",
"show_alert_on": ["A","B", "E"]
}
Response JSON
{
"message": "Patient Alert Updated Successfully"
}
Required(R)/Opti
Param Name Data Type Description
onal(O)
patient_id R String Patient Id
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
45
Feature - API Document
https://{clinic_url}/prognocis/apis/{polname}/patients/alerts
Request JSON:
{
"patient_id": 117
}
Response JSON
[
{
"alert_id": 2,
"alert_text": "ABCD ABCD",
"from_date": "2021-01-01 00:00:00.0",
"upto_date": "2021-12-31 00:00:00.0",
"show_alert_on": [
"A",
"E",
"B"
]
}
]
HTTP Method DELETE
Delete Alert API:
https://{clinic_url}/prognocis/apis/{polname}/patients/alerts
Request JSON:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
46
Feature - API Document
{
"alert_id":3811
}
Response JSON
{
"message": "Alert Deleted Successfully"
}
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
47
Feature - API Document
"billable_units": 1
}
],
"progress_note":{ "file_base64":"DKFKDKGJFGUIUEJNDNJMGOTRKFJDFJSSJFKJKFGKFG == ",
"file_extension":"pdf"
}
}
Required(R)/Op
Param Name Data Type Description
tional(O)
appt_id R Numeric Appointment Id
patient_id R String Patient Id
cpt_code R String Procedure code
cpt_description O String Procedure code description
snomed_code O String SNOMED code associated with
the procedure code
icd_codes O String ICD code assigned to procedure
code
modifier O String Procedure code Modifiers
billable_units O Numeric Numeric Billable units
progress_note O String Progress notes in the base64
format
file_extension O String File extension
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
48
Feature - API Document
[
{
"page_no": 1,
"total_pages": 30,
"no_of_records": 100,
"total_records": 2935,
"details": [
{
"adjuster_id": 2901,
"adjuster_name": " Test Adjuster ",
"insurance_name": "State Fund",
"adjuster_address": {
"line1": "",
"line2": "",
"city": "",
"state": "California",
"country": "USA",
"zip": "",
"zip2": "",
"tel_cell": "",
"tel_home": "",
"tel_work1": "123456789",
"tel_work2": "",
"fax": "",
"email": "",
"non_US": false
}
]
]
Request Fields
Required(R)/O
Param Name Data Type Description
ptional(O)
adjuster_id O Integer Adjuster Id
adjuster_name O String Adjuster name
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
49
Feature - API Document
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
50
Feature - API Document
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
adjuster_name R String Adjuster name
insurance_name O String Insurance Name
adjuster_address O String Adjuster Address
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
51
Feature - API Document
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
adjuster_id R Integer Adjuster Id
adjuster_name R String Adjuster name
insurance_name O String Insurance Name
adjuster_address O String Adjuster Address
Error codes:
{
"active": true,
"attorney_id": 10,
"law_firm": " Test Law Group ",
"contact_person": " test test ",
"attorney_address": {
"line1": " test test ",
"line2": "",
"city": " test test ",
"state": "California",
"country": "USA",
"zip": "96067",
"zip2": "2283",
"tel_cell": "",
"tel_home": "",
"tel_work1": "1234567489 x ",
"tel_work2": "",
"fax": "12345678 x ",
"email": "[email protected]",
"non_US": false
}
}
]
}
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
attorney_id O Integer Attorney Id
law_firm O String Law Firm Name
contact_person O String Contact Person Name
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
53
Feature - API Document
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
54
Feature - API Document
"attorney_id": 10154
}
Request Fields:
Required(
Param Name R)/Option Data Type Description
al(O)
law_firm R String Law Firm Name
contact_person R String Contact Person Name
attorney_address O String Attorney Address
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
55
Feature - API Document
"country": "USA",
"zip": "96067",
"zip2": "2283",
"tel_cell": "",
"tel_home": "",
"tel_work1": "1234567489 x ",
"tel_work2": "",
"fax": "12345678 x ",
"email": "[email protected]",
"non_US": false
}
}
Response JSON
{
"response_code": 118,
"response_message": "Record Updated Successfully "
}
Request Fields
Required(R)/
Param Name Data Type Description
Optional(O)
attorney_id R Integer Attorney Id
law_firm O String Law Firm Name
contact_person O String Contact Person Name
attorney_address O String Attorney Address
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
56
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
57
Feature - API Document
"visits_approved": 0,
"visits_used": 1,
"case_status": "Open",
"case_closed_date": "",
"case_close_notes": "",
"primary_insurance_details": {
"patient_insurance_id": 164278,
"master_insurance_id": 148,
"classified_as": 1,
"classified_as_text": "Healthcare"
},
"patient_contacts": {}
}
]
}
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
patient_id R Integer Patient Id
case_id O Integer Case Id
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
58
Feature - API Document
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
59
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
60
Feature - API Document
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
61
Feature - API Document
"lien_on_file": true,
"lien_notes": "Dummy Lien Notes",
"amount_approved": 10.00,
"billed_amount": 5.00,
"visits_approved": 2,
"mpn_id": "",
"case_status": "Closed",
"case_closed_date": "2022-04-01",
"case_close_notes": "Test Case Close Notes"
}
Response JSON
{
"message": "Case Updated Successfully."
}
Response JSON
{
"message": "Case Deleted Successfully."
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
62
Feature - API Document
Request JSON
{
{
"patient_id": 232738,
"encounter_id": 360161,
"icd_details": [
{
"description": "Arthritis of ankle, left, degenerative (From API)",
"icd10_code": "M19.072",
"billable": true
}
],
"cpt_details": [
{
"code": "99213",
"description": "CPT Added From API",
"units": "1",
"icd10_codes": [
"M19.072",
"M51.35"
],
"modifiers": [
"1P",
"23"
]
}
],
"hcpc_details": [
{
"code": "G8972",
"description": "Amb Service Outside State Per Mile Transport",
"units": "1",
"icd10_codes": [
"M19.072",
"M51.35"
],
"modifiers": [
"1P",
"23",
"27"
]
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
63
Feature - API Document
}
],
"snomed_details": []
}
}
Response JSON
{
"icd_ids": [
385528
],
"cpt_ids": [
244929
],
"hcpc_ids": [
244929
],
"snomed_ids": []
}
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
patient_id R Integer Patient Id
encounter_id R Integer Encounter Id
icd_details O String[] ICD Details
cpt_details O String[] CPT Details
hcpc_details O String[] HCPC Details
snomed_details O String[] SNOMED Details
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
64
Feature - API Document
Error codes:
"57661",
"58021"
],
"rvu": ""
}
],
"snomed_details": []
}
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
patient_id R Integer Patient Id
encounter_id R Integer Encounter Id
{
"employer_name": " Test Employer "
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"details": [
{
"employer_id": 1,
"employer_name": "Test Employer",
"address": {
"line1": "ADDRESS LINE 1",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
66
Feature - API Document
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
employer_name O String Employer Name
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
67
Feature - API Document
Error codes:
{
"employer_name":"Dummy Dummy",
"employer_first_name" : "Dummy",
"employer_last_name" : "Employer",
"employer_ext_id":"ABCD1234",
"employer_designation": "Software Tester DB",
"employer_notes" : "xyz",
"employer_bool_inactive": 0,
"employer_bool_enctype" : 0,
"employer_bool_jobno" : 0,
"employer_bool_patient" : 0,
"employer_bool_dept" : 0,
"employer_im_id": "2",
"employer_policy_number": "440015",
"employer_business_type": "Software Business",
"employer_ftin" : "8600",
"employer_supported_enctypes" : "0D",
"address" : {
"line1" : "Appt. No 1",
"line2" : "Suit No. 2",
"city" : "Merryland",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
68
Feature - API Document
"state" : "CA",
"zip" : "54321",
"zip2" : "1234",
"tel_cell" : "123456789",
"tel_home" : "123456789",
"tel_work1" : "1234567892",
"tel_work2" : "123456789”,
"fax" : 123456789,
"email" : "[email protected]"
}
}
Response JSON
{
"response_code": 117,
"response_message": "Record Added Successfully",
"employer_id": 10345
}
Request Fields
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
69
Feature - API Document
{
"employer_id": 10345,
"employer_name":"Dummy Dummy",
"employer_first_name" : "Dummy",
"employer_last_name" : "Employer",
"employer_ext_id":"ABCD1234",
"employer_designation": "Software Tester DB",
"employer_notes" : "xyz",
"employer_bool_inactive": 0,
"employer_bool_enctype" : 0,
"employer_bool_jobno" : 0,
"employer_bool_patient" : 0,
"employer_bool_dept" : 0,
"employer_im_id": "2",
"employer_policy_number": "440015",
"employer_business_type": "Software Business",
"employer_ftin" : "8600",
"employer_supported_enctypes" : "0D",
"address" : {
"line1" : "Appt. No 1",
"line2" : "Suit No. 2",
"city" : "Merryland",
"state" : "CA",
"zip" : "54321",
"zip2" : "1234",
"tel_cell" : "9876543214",
"tel_home" : "9876543213",
"tel_work1" : "9876543212",
"tel_work2" : "9876543211",
"fax" : 9876543210,
"email" : "[email protected]"
}
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
70
Feature - API Document
Response JSON
{
"response_code": 118,
"response_message": "Record Updated Successfully "
}
{
"employer_id": 10345
}
Response JSON
{
"message": "Employer Deleted Successfully."
}
{
"patient_id": 232738
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
71
Feature - API Document
"no_of_records": 19,
"total_records": 19,
"details": [
{
"encounter_id": 349357,
"patient_id": 232738,
"patient_chart_no": "SCL34856",
"patient_name": "tesat 44, amey 44",
"encounter_date": "2023-02-24",
"visit_type_code": "03",
"visit_type_name": "Simple Enc Type",
"attending_provider_id": 41731,
"attending_provider_name": "Ansari Adeela",
"reason_for_visit": "test",
"status": "Closed",
"case_id": "",
"case_no": "",
"location_id": 2,
"location_code": "CL"
}
]
}
Request Fields:
Required(R)/O
Param Name Data Type Description
ptional(O)
patient_id R Integer Patient Id
Response Fields
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
72
Feature - API Document
Error codes:
{
"patient_id": 232738,
"encounter_date": "2023-07-27",
"encounter_time_hrs": 10,
"encounter_time_mins": 45,
"attending_provider_id": 41731,
"supervising_provider_id": 41731,
"rendering_provider_id": 41731,
"attending_clinical_staff_id": "",
"visit_type_code": "03",
"referred_by_provider_id": "",
"appointment_location_code": "CL",
"case_no": "",
"pri_ins_id": 164275,
"sec_ins_id": 164275,
"reason_for_visit": "Test Reason",
"major_reason_id": 2,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
73
Feature - API Document
"toc_visit_status_id": 3
}
Response JSON
{
"response_code": 117,
"response_message": "Record Added Successfully",
"encounter_id": 360164
}
Request Fields:
{
"encounter_id": 360164,
"patient_id": 232738,
"encounter_date": "2023-07-27",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
74
Feature - API Document
"encounter_time_hrs": 10,
"encounter_time_mins": 45,
"attending_provider_id": 41731,
"supervising_provider_id": 41731,
"rendering_provider_id": 41731,
"attending_clinical_staff_id": "",
"visit_type_code": "03",
"referred_by_provider_id": "",
"appointment_location_code": "CL",
"case_no": "",
"pri_ins_id": 164275,
"sec_ins_id": 164275,
"reason_for_visit": "Test Reason",
"major_reason_id": 2,
"toc_visit_status_id": 3
}
Response JSON
{
"response_code": 118,
"response_message": "Record Updated Successfully "
}
Request JSON
{
"preauth_number": "RFA00896"
}
Response JSON
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
75
Feature - API Document
[
{
"patient_id": 232738,
"patient_chart_no": "SCL34856",
"case_id": "",
"case_no": "",
"preauth_encounter_id": "360107",
"rfah_id": 20908,
"preauth_number": "RFA00896",
"date_of_service": "2023-07-03",
"preauth_type": "",
"preauth_status": "Open",
"notes": "",
"location_id": 2,
"location_code": "CL",
"test_details": [
{
"test_id": 34717,
"test_name": "Ankle (R) X-ray",
"test_type": "RL",
"test_response_status": "Unprocessed",
"reference": "RAD0001265",
"reason": "",
"icd_codes": [
"M54.9",
"F31.9",
"F41.1"
],
"other_info": "",
"notes": ""
}
]
}
]
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
preauth_number R String Preauth Number
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
76
Feature - API Document
Response Fields:
Error codes:
{
"preauth_number": "RFA00896"
}
Response JSON
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
77
Feature - API Document
{
"patient_id": 189753
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"details": [
{
"patient_insurance_id": 164268,
"preauth_id": 10269,
"preauth_number": "12121212",
"charge_code": "0001M",
"from_date": "2023-05-01",
"upto_date": "2023-05-31",
"no_of_visits": 2,
"comments": "Dummy Notes"
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
patient_id R Integer Patient Id
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
78
Feature - API Document
Error codes:
{
"patient_id": 189753,
"patient_insurance_id": 164268,
"preauth_number":"RFA00825",
"from_date":"2023-07-28"
}
Response JSON
{
"response_code": 117,
"response_message": "Record Added Successfully",
"preauth_id": 10270
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
79
Feature - API Document
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
patient_id R Integer Patient Id
patient_insurance_id R Integer Patient Insurance Id
preauth_number R String Preauth Number
from_date R String From Date
Response Fields:
Error codes:
{
"preauth_id": 10270,
"patient_id": 189753,
"patient_insurance_id": 164268,
"preauth_number": "RFA00825",
"charge_code": "0001M",
"from_date": "2023-07-28",
"upto_date": "2023-08-28",
"no_of_visits": 2,
"comments": "Test"
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
80
Feature - API Document
Response JSON
{
"response_code": 118,
"response_message": "Record Updated Successfully "
}
Request JSON
{
"patient_id": 232738,
"encounter_id": 360161
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"no_of_records": 1,
"total_records": 1,
"details": [
{
"encounter_id": 360161,
"order_id": 79088,
"order_number": "",
"test_id": 11299,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
81
Feature - API Document
"test_type": "LB",
"icd_ids": "",
"vendor_id": 20302,
"order_status": "Selected"
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
patient_id R Integer Patient Id
encounter_id O Integer Encounter Id
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
82
Feature - API Document
Request JSON
{
"patient_id": 232738,
"encounter_id": 360161,
"test_details": [
{
"test_id": 11299,
"test_type": "LB",
"vendor_id": 20302
}
]
}
Response JSON
{
"response_code": 117,
"response_message": ""
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
patient_id R Integer Patient Id
encounter_id R Integer Encounter Id
test_id R Integer Test ID
test_type R String Test Type
vendor_id O Integer Vendor Id
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
83
Feature - API Document
Request JSON
{
"test_types": ["LB", "RL", "CO", "PR"]
}
Response JSON
{
"page_no": 1,
"total_pages": 66,
"no_of_records": 100,
"total_records": 6537,
"details": [
{
"test_id": 26,
"test_name": "'",
"test_type": "CO",
"speciality_name": "0089X8944W"
},
{
"test_id": 36328,
"test_name": "** 73235",
"test_type": "LB",
"test_category": "lng_Tests_HL7_Result_Test",
"test_code": "LB36328"
},
{
"test_id": 38271,
"test_name": "** 73235",
"test_type": "LB",
"test_category": "lng_Tests_HL7_Result_Test",
"test_code": "LB38271"
}
]
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
84
Feature - API Document
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
test_types R String[] Test Types
Response Fields:
Error codes:
{
"vendor_types": ["LB"]
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"no_of_records": 18,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
85
Feature - API Document
"total_records": 18,
"details": [
{
"vendor_id": 20306,
"vendor_name": "'disc",
"vendor_type": "LB"
},
{
"vendor_id": 20305,
"vendor_name": "a'b'c'def",
"vendor_type": "LB"
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
vendor_types R String[] Vendor Types
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
86
Feature - API Document
{
"name": "FD",
"code": "PG85071",
"id": 85071
}
Response JSON
[
{
"name": "FD",
"code": "PG85071",
"id": 85071
}
]
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
name O String Patient type name
code O String Patient type code
id O Integer Patient type id
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
87
Feature - API Document
Error codes:
{
"patient_id": 232738,
"encounter_id": 360161
}
Response JSON
[
{
"id": "50",
"type": "Patient Employer Department",
"name": "'Employer Unspecified",
"address": {
"line1": "",
"line2": "",
"city": "",
"state": "Missouri",
"country": "USA",
"zip": "",
"zip2": "",
"tel_cell": "",
"tel_home": "",
"tel_work1": "",
"tel_work2": "",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
88
Feature - API Document
"fax": "",
"email": "",
"non_US": false
}
}
]
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
patient_id R Integer Patient Id
encounter_id R Integer Encounter Id
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
89
Feature - API Document
{
"type_code": "DF"
}
Response JSON
"totalRecords": 30,
"pageNumber": 1,
"numberOfRecords": 30,
"totalPages": 1,
"content": [{
"id": "978",
"type_code": "DF",
"name": "As Needed",
"code": "PRN"
},
{
"id": "979",
"type_code": "DF",
"name": "Five Times Daily ",
"code": "5xDAILY"
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
type_code R String Group Type Code
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
90
Feature - API Document
Error codes:
{
"document_template_type":"TR"
}
Response JSON
[
{
"document_id": 43236,
"document_name": "*New Patient WC"
},
{
"document_id": 43262,
"document_name": "AC_PN"
},
{
"document_id": 43261,
"document_name": "consult prints format"
}
]
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
91
Feature - API Document
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
document_template
R String Document Template Type
_type
Response Fields:
Error codes:
{
"mpn_id":2411,
"mpn_code": 10,
"mpn_applicant": "FBO Marin General and Novato Community Hospital"
}
Response JSON
{
"totalRecords": 1,
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
92
Feature - API Document
"pageNumber": 1,
"numberOfRecords": 1,
"totalPages": 1,
"content": [
{
"mpn_code": 10,
"mpn_applicant": "FBO Marin General and Novato Community Hospital",
"mpn_address": "166 Hillside Ave. Mill Valley, CA 94941",
"mpn_type": "Self-Insured Employer",
"mpn_name": "Mezzo Forte Medical Provider Network",
"mpn_approval_date": "2005/01/31",
"mpn_website": "",
"mpn_status": "W"
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
mpn_id O integer MPN ID
mpn_code O integer MPN CODE
mpn_applicant O String MPN APPLICANT
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
93
Feature - API Document
{
"id": 1,
"name": "DASC",
"category": "DASC"
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"details":
[
"id": 1,
"name": "DASC",
"category": "DASC",
"address":
{
"line1": "ADDRESS LINE 1",
"line2": "ADDRESS LINE 2",
"city": "Decatur",
"state": "Alabama",
"country": "USA",
"zip": "12345",
"zip2": "1234",
"tel_cell": "",
"tel_home": "",
"tel_work1": "",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
94
Feature - API Document
"tel_work2": "",
"fax": "113-323-2323",
"email": "",
"non_US": false
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
id O integer MPN ID
name O String MPN CODE
category O String MPN APPLICANT
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
95
Feature - API Document
{
"name": "AMEY",
"category": "AMEY",
"address": {
"line1": "ADDRESS LINE 1",
"line2": "ADDRESS LINE 2",
"city": "Parkview",
"state": "AP",
"country": "USA",
"zip": "12345",
"zip2": "1234",
"tel_cell": "",
"tel_home": "",
"tel_work1": "",
"tel_work2": "",
"fax": "113-323-2323",
"email": "",
"non_US": false
}
}
Response JSON
{
"response_code": 117,
"response_message": "Record Added Successfully",
"id": 62
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
name R String Address Name
category O String Address Category
address R String[] Address Details
Response Fields:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
96
Feature - API Document
id integer Address ID
Error codes:
{
"id": 62
"name": "AMEY",
"category": "AMEY",
"address": {
"line1": "ADDRESS LINE 1",
"line2": "ADDRESS LINE 2",
"city": "Parkview",
"state": "AP",
"country": "USA",
"zip": "12345",
"zip2": "1234",
"tel_cell": "",
"tel_home": "",
"tel_work1": "",
"tel_work2": "",
"fax": "113-323-2323",
"email": "",
"non_US": false
}
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
97
Feature - API Document
Response JSON
{
"response_code": 118,
"response_message": "Record Updated Successfully "
}
{
"complaint_id": 467
}
Response JSON
{
"page_no": 1,
"total_pages": 1,
"no_of_records": 1,
"total_records": 1,
"details":
[
{
"complaint_id": 467,
"complaint_name": "!@$*(){}:?/;'|[]\\",
"complaint_classification": "Cardiologist",
"complaint_icd_code": "",
"complaint_snomed_code": "",
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
98
Feature - API Document
"complaint_icd10_code": ""
}
]
}
Request Fields:
Required(R)/
Param Name Data Type Description
Optional(O)
complaint_id O integer Complaint Id
Response Fields:
Error codes:
© Copyright 2024, Bizmatics, Inc. 2429 Military Road, Suite 300, Niagara Falls, NY 14304
99