Diagnoses
The Diagnoses feature allows the user to view, create, retrieve, modify or delete a diagnoses from an encounter. Diagnoses will return a SNOMED code and possibly a matching ICD-9/10 code. These codes describe the main reason the patient is seeking treatment.
SNOMED -Systematized Nomenclature of Medicine
ICD - International Classification of Diseases
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Endpoints
- Primary
Create new diagnosis for given encounter
POST
/v1/{practiceid}/chart/encounter/{encounterid}/diagnoses
Create a new record of diagnoses for the specific encounter
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
encounterid
integer
encounterid
Content-Type
string
Content type of the payload
Output Parameters
Expand all
description
string
Brief description for this SNOMED Code.
diagnosisid
integer
The Athena ID for the diagnosis created by the POST action.
errormessage
string
If not successful, will contain error message.
icdcodes
array
List of relevant ICD codes for this diagnosis.
laterality
string
The laterality of the SNOMED Code, if any.
note
string
The note entered for this diagnosis.
ranking
integer
Used to specify the position of this diagnosis in the diagnoses section.
snomedcode
integer
SNOMED Code for this diagnosis.
success
string
True if successful.
supportslaterality
string
If true, then laterality may chosen for the diagnosis.
Example Code
Get list of diagnoses for the given encounter
GET
/v1/{practiceid}/chart/encounter/{encounterid}/diagnoses
Retrieve a list of diagnoses for a specific encounter
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
encounterid
integer
encounterid
Output Parameters
Expand all
description
string
Brief description for this SNOMED Code.
diagnosisid
integer
Athena ID for this diagnosis.
icdcodes
array
List of relevant ICD codes for this diagnosis.
laterality
string
The laterality of the SNOMED Code, if any.
note
string
The note entered for this diagnosis.
ranking
integer
Used to specify the position of this diagnosis in the diagnoses section.
snomedcode
integer
SNOMED Code for this diagnosis.
supportslaterality
string
If true, then laterality may chosen for the diagnosis.
Example Code
Update selected diagnosis for given encounter
PUT
/v1/{practiceid}/chart/encounter/{encounterid}/diagnoses/{diagnosisid}
Modifies a diagnosis record for a specific encounter
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
encounterid
integer
encounterid
diagnosisid
integer
diagnosisid
Content-Type
string
Content type of the payload
Output Parameters
Expand all
errormessage
string
If not successful, will contain error message.
success
string
True if successful.
supportslaterality
string
If true, then laterality may chosen for the diagnosis.
Example Code
Delete selected diagnosis for given encounter
DELETE
/v1/{practiceid}/chart/encounter/{encounterid}/diagnoses/{diagnosisid}
Delete a record of a specific diagnoses
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
encounterid
integer
encounterid
diagnosisid
integer
diagnosisid
Output Parameters
Expand all
errormessage
string
If not successful, will contain error message.
success
string
True if successful.
Example Code