Patient Statement
The Patient Statement feature allows the user to retrieve patient statement information such as the statement's ID, statement date, and patient balance. The feature also allows the user to retrieve information as PDF.
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Endpoints
- Primary
Get list of patient-statements (optionally with filters)
GET
/v1/{practiceid}/patients/{patientid}/patientstatement
Retrieves a list of patient statements for a specific patient chart
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
patientid
integer
patientid
enddate
string
Statements sent on or before this date (mm/dd/yyyy) will be included in the results.
startdate
string
Statements sent on or after this date (mm/dd/yyyy) will be included in the results.
limit
integer
Number of entries to return (default 1500, max 5000)
offset
integer
Starting point of entries; 0-indexed
Output Parameters
Expand all
claimids
string
Claim Ids associated with the particular statement
dunninglevel
number
Dunning Level of that particular statement
statementdate
string
The date (mm/dd/yyyy) the statement was created.
statementid
number
The ID of the patient statement.
totalamountdue
string
The patient's outstanding balance on the statement.
Example Code
Get selected patient-statement in PDF format
GET
/v1/{practiceid}/patients/{patientid}/patientstatementimage
Retrieves a specific patient statement for a specific patient
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
patientid
integer
patientid
statementid
integer
The patient statement ID.
Output Parameters
Expand all
pdf
string
Base64 encoded PDF.
Example Code