Error States (Transactional)
Overview
Medicus uses conventional HTTP response codes to indicate the success or failure of an API request. Error states are restricted to the individual endpoint. An error state from a parallel or previous action will not be returned.
Errors are always returned with a HTTP response code and a JSON body that describes the errors:
This includes:
HTTP response code
The
errors
array:code
(string) the Medicus error codetitle
(string) the error's titledetail
(string) more detail about the error
Generic Error Response Codes
The following error states occur outside of the endpoint-specific error states.
HTTP Code | Error Code | Scenario | |
---|---|---|---|
|
| 'Unauthorised access. This app has not been accredited for this endpoint. | |
|
| No JWT token was supplied | |
|
| The provided authentication credentials are invalid. | |
|
| A Patient App Linkage doesn't exist between this app and the patient (PFS only). | |
|
| No patient record exists with the specified Patient ID. | |
|
| An internal server error has occurred on the Medicus platform. This may be as a result of a service outage or another issue. If the problem persists, please contact the Medicus Health API team. |
Example Response (Patient Not Found)
HTTP/1.1 404 Not Found
Content-Type: application/json
{
"errors": [
{
"code": "PATIENT_NOT_FOUND"
"title": "Patient Not Found",
"detail": "No patient record exists with the specified Patient ID."
}
]
}
Example Response (Internal Server Error)
HTTP/1.1 500 Internal Server Error
Content-Type: application/json
{
"errors": [
{
"code": "INTERNAL_SERVER_ERROR"
"title": "Internal server error",
"detail": "An issue has ooccurred on the Medicus provider API"
}
]
}