List Terminology Versions (Transactional)
Overview
This endpoint is intended for use by Transactional API Consumer applications to discover the versions of the coding schemas used within the Medicus Tenant.
Making a Request
HTTP method: GET
URL: https://{{medicusTenant}}.{{medicusBaseURL}}/transactional-api/v1/terminology-versions
Request Headers
Header | Value | Description |
---|---|---|
|
| The JWT token for the API Consumer |
Example Request
GET /transactional-api/v1/terminology-versions
Authorization: Bearer [token]
Idempotency-Key: 4c526aed-a889-4e40-b47e-6e3feac48fb8
Response Details
Specific Response Codes
HTTP Code | Error Code | Scenario |
---|---|---|
|
| Success |
Output Fields
Field | Type | Description |
---|---|---|
| string | The version of the NHS SNOMED CT data set that is in use on the Medicus tenant
|
| string | The current version of the NHS DM+D data set that is in use on the Medicus tenant |
Example Response (Successful Retrieval)
{
"terminologyVersions": {
"SNOMED_CT_UK_EDITION": "2022-05-11",
"GB_NHS_DMD": "2022-07-18"
}
}