THERAPYNOTES
Fetch Patient Billing Statement
Fetch patient billing statement in Therapy Notes
POSThttps://api.ontross.com/api/integrations/tn/fetch-patient-billing-statement
Request Fields
input
object
requiredInput object.
input.patientID
string
requiredPatient id
auth_id
string
requiredAuth id
Output Fields
billing_statement
object
Billing statement object.
billing_statement.Items
array
List of Items.
billing_statement.Items[].RecordType
integer
Record type
billing_statement.Items[].Date
string
Date
billing_statement.Items[].CalendarEntryID
integer
Calendar entry id
billing_statement.Items[].EncryptedCalendarEntryID
string
Encrypted calendar entry id
billing_statement.Items[].CalendarEntryTypeCode
integer
Calendar entry type code
billing_statement.Items[].CalendarEntryTypeName
string
Calendar entry type name
billing_statement.Items[].PatientID
integer
Patient id
billing_statement.Items[].EncryptedPatientID
string
Encrypted patient id
billing_statement.Items[].PatientFirstName
string
Patient first name
billing_statement.Items[].PatientLastName
string
Patient last name
billing_statement.Items[].PatientDOB
string
Patient dob
billing_statement.Items[].PatientInsuredsIdNumber
string
Patient insureds id number
billing_statement.Items[].PatientSecondaryInsuredsIdNumber
string
Patient secondary insureds id number
billing_statement.Items[].NoteTypeCode
integer
Note type code
billing_statement.Items[].SkipCreatingNote
boolean
Skip creating note
billing_statement.Items[].BillableItemID
integer
Billable item id
billing_statement.Items[].PaymentMethod
integer
Payment method
billing_statement.Items[].SecondaryPaymentMethod
integer
Secondary payment method
billing_statement.Items[].Comments
string
Comments
billing_statement.Items[].PlaceOfServiceCode
string
Place of service code
billing_statement.Items[].ClinicianID
integer
Clinician id
billing_statement.Items[].EncryptedClinicianID
string
Encrypted clinician id
billing_statement.Items[].ClinicianFirstName
string
Clinician first name
billing_statement.Items[].ClinicianLastName
string
Clinician last name
billing_statement.Items[].ClinicianNPI
string
Clinician npi
billing_statement.Items[].ClinicianLicense
string
Clinician license
billing_statement.Items[].ClinicianDisplayTitle
string
Clinician display title
billing_statement.Items[].InsurancePayerID
integer
Insurance payer id
billing_statement.Items[].InsurancePayerName
string
Insurance payer name
billing_statement.Items[].InsurancePayerPayerID
string
Insurance payer payer id
billing_statement.Items[].InsuranceProviderGroupID
integer
Insurance provider group id
billing_statement.Items[].EncryptedProviderID
string
Encrypted provider id
billing_statement.Items[].InsuranceProviderGroupHasActiveSetting
boolean
Insurance provider group has active setting
billing_statement.Items[].SecondaryInsurancePayerID
integer
Secondary insurance payer id
billing_statement.Items[].SecondaryInsuranceProviderGroupID
integer
Secondary insurance provider group id
billing_statement.Items[].EncryptedSecondaryProviderID
string
Encrypted secondary provider id
billing_statement.Items[].SecondaryInsuranceProviderGroupHasActiveSetting
boolean
Secondary insurance provider group has active setting
billing_statement.Items[].SecondaryInsurancePayerName
string
Secondary insurance payer name
billing_statement.Items[].SecondaryInsurancePayerPayerID
string
Secondary insurance payer payer id
billing_statement.Items[].LocationType
integer
Location type
billing_statement.Items[].CustomLocation
integer
Custom location
billing_statement.Items[].Services
array
List of Services.
billing_statement.Items[].Services[].BillableServiceID
integer
Billable service id
billing_statement.Items[].Services[].ServiceCodeID
integer
Service code id
billing_statement.Items[].Services[].ServiceCodeType
integer
Service code type
billing_statement.Items[].Services[].ServiceCodeText
string
Service code text
billing_statement.Items[].Services[].ServiceCodeDesc
string
Service code desc
billing_statement.Items[].Services[].ProcedureModifierCodes
array
List of Procedure Modifier Codes.
billing_statement.Items[].Services[].PatientAmtOwed
number
Patient amt owed
billing_statement.Items[].Services[].PatientRate
number
Patient rate
billing_statement.Items[].Services[].PatientPaid
number
Patient paid
billing_statement.Items[].Services[].InsurancePaid
number
Insurance paid
billing_statement.Items[].Services[].DirectPaymentStatus
integer
Direct payment status
billing_statement.Items[].Services[].InsuranceAmtOwed
number
Insurance amt owed
billing_statement.Items[].Services[].InsuranceRate
number
Insurance rate
billing_statement.Items[].Services[].InsuranceStatus
string
Insurance status
billing_statement.Items[].Services[].InsuranceStatusCode
integer
Insurance status code
billing_statement.Items[].Services[].AmountToClaimToInsurance
number
Amount to claim to insurance
billing_statement.Items[].ItemIndex
integer
Item index
billing_statement.IsBiller
boolean
Is biller
billing_statement.IsLimitedBiller
boolean
Is limited biller
billing_statement.BalanceOwed
number
Balance owed
billing_statement.UnassignedCredit
number
Unassigned credit
billing_statement.PastFutureChangeIndex
integer
Past future change index
billing_statement.ContainsPastItems
boolean
Contains past items
billing_statement.ContainsFutureItems
boolean
Contains future items
Code
curl --request POST \
--url https://api.ontross.com/api/integrations/tn/fetch-patient-billing-statement \
--header 'X-API-Key: REPLACE_KEY_VALUE' \
--header 'content-type: application/json' \
--data '{"input":{"patientID":"string_id"},"auth_id":"auth_uuid_here"}'Request BODY
{
"input": {
"patientID": "string_id"
},
"auth_id": "auth_uuid_here"
}