Download OpenAPI specification:
The Central Registry Discharge API allows authorized users to discharge a patient from The Central Registry.
Currently, Bearer token authentication will be used. This token will be provided to the vendor by the Central Registry, and will be registered into the CR's database.
This endpoint allows an authorized user to discharge a patient from The Central Registry.
discharge_user_name required | string Discharge User Name: The full name of the user in the clinic software platform that is performing the discharge. This will be used for auditing purposes. |
unique_site_id required | string = 8 characters Unique Site ID: An identifier that's composed of the 2-character short name for the state, and 6-digits that follow the first segment. |
crid required | string = 9 characters Central Registry ID: A unique 9-character identifier for the patient in the Central Registry. Must be exactly 9 characters long. |
identification_hash required | string Identification Hash: A hash of the birthdate using the separately provided secret key, to validate that the selected patient is correct. Important Details:
|
discharge_date required | string <date> Actual date of discharge in ISO8601 format (YYYY-MM-DD).
|
discharge_reason required | integer Reason for discharge, represented by an integer code. The discharge reason “Patient did not complete the admission process” may ONLY be selected if the patient has not yet received any doses of medication in this episode. Must be one of the provided codes:
|
dose_through_date required | string <date> Date of the last medication physically provided including take homes (YYYY-MM-DD).
|
medication required | integer Medication code corresponding to the final dose. Only one medication can be selected. If the final dose was split, list only once. Can not be NULL or blank. Must correspond to one of these codes:
|
dosage required | number <float> Final dose provided (in milligrams).
|
{- "discharge_user_name": "John Doe",
- "unique_site_id": "AL123456",
- "crid": "123456789",
- "identification_hash": "52eaa2f1ad9cf031577c3b072e77ac5fe6491af3ee21646d665b9449f253a333",
- "discharge_date": "2023-12-01",
- "discharge_reason": 2,
- "dose_through_date": "2019-08-24",
- "medication": 1,
- "dosage": 108.32
}
{- "success": true,
- "message": "Discharge recorded successfully."
}