Inpatient Procedures
Inpatient Procedure feature allows the user to view the list of procedures performed or planned during the patient's stay in the hospital.
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 procedures performed for a patient
stay
GET
/v1/{practiceid}/stays/{stayid}/procedures/performed
Retrieves a list of procedures performed on a patient during the specific stay in the hospital.
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
stayid
integer
stayid
limit
integer
Number of entries to return (default 1500, max 5000)
offset
integer
Starting point of entries; 0-indexed
Output Parameters
Expand all
code
string
The code value identifying the performed procedure.
codesystem
string
The code system that the procedure code belongs to
encounterid
integer
The athena identifier for the encounter
name
string
The athena description of the performed procedure.
note
string
The note for performed procedure.
performeddatetime
string
Procedure performed start date and time in iso8601 format
procedureid
integer
The athena identifier for the performed procedure
scheduledenddatetime
string
Procedure performed end date and time in iso8601 format
side
string
The performed procedure side
site
string
The performed procedure site
status
string
The status of the procedure.
Example Code
Get list of planned procedures for a patient
stay.
GET
/v1/{practiceid}/stays/{stayid}/procedures/planned
Retrieves a list of planned procedures for a specific patient stay in the hospital
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
stayid
integer
stayid
limit
integer
Number of entries to return (default 1500, max 5000)
offset
integer
Starting point of entries; 0-indexed
Output Parameters
Expand all
code
string
The code value identifying the planned procedure.
name
string
The athena description of the planned procedure.
procedureid
integer
The athena identifier for the planned procedure
scheduledenddatetime
string
Procedure planned end date and time in iso8601 format
scheduledstartdatetime
string
Procedure planned start date and time in iso8601 format
status
string
The status of the procedure.
Example Code