Create a Care Record Note (Transactional)
Overview
The Create a Care Record Note endpoint allows 3rd Party Transactional apps to add notes to the patient’s care record. The notes take the form of a “note” string and are accompanied by metadata, including a SNOMED CT code.
Note: when saving a Care Record Note, it’s "status" is set to FINALISED
.
Making a Request
Method: POST
URL: https://{{medicusTenant}}.{{medicusBaseURL}}/transactional-api/v1/patient/{{patientId}}/create-care-record-note
Request Headers
Header | Value | Description |
---|---|---|
|
| The JWT token provided by the Consumer |
| UUID | The unique idempotency key |
URL Parameters
Parameter | Description | Validation Rules |
---|---|---|
| The Medicus Patient ID e.g. | Mandatory UUID |
Body Parameters
Parameter | Nested-parameters | Description | Validation Rules |
---|---|---|---|
| N/A | The date that the note was recorded | date required |
|
| SNOMED CT code | |
| N/A | The care record note note | string |
|
| The document’s author | Practitioner Accepted identifier types:
|
|
| The organisation that the document was authored by | Organisation Accepted identifier types:
|
Example Request
GET /transactional-api/v1/patient/ec7be6f2-360c-11ed-b451-060b232f1aa2/create-care-record-note
Authorization: Bearer [token]
Idempotency-Key: c6433ae4-a699-41dc-b24e-8b53882509a9
{
"recordDate": "2022-04-20",
"code": {
"conceptId": "24731000000108",
"description": "Clinic note"
},
"note": "Patient told to stay at home and monitor conditions. Stay hydrated, stay at home and call back if symptoms do not improve.",
"recordedByPractitioner": {
"name": "Dr Joel Ward",
"identifier": "AC12345",
"identifierType": "gb-gmc-number"
},
"recordedByOrganisation": {
"name": "Felix White Clinic",
"identifier": "F85003",
"identifierType": "nhs-england-ods-code",
}
}
Response Details
Specific Response Codes
HTTP Code | Error Code | Scenario |
---|---|---|
| The upload was successful | |
|
| The date supplied is in the future or is in an invalid format |
|
| The body payload is missing one or more required properties. |
|
| The enum value provided for the field {{fieldName}} is invalid |
Example Response (Missing Required Field)
HTTP/1.1 400 Bad Request
Content-Type: application/json
{
"errors": [
{
"code": "MISSING_REQUIRED_PROPERTY",
"title": "Missing required Property",
"detail": "Missing field required {$fieldName}"
}
]
}
Example Response (Successful Recording of Note)
HTTP/1.1 200 OK
{
"success": true
}