ЕСОЗ - публічна документація
Update program medication registry (NHS Admin)
Purpose
The service is designed to uploading updates to the program medication registry. The process uses the jabba service. Upon execution of the request, a job is created, on the basis of which tasks are created. Each task is one request to create entity from registry.
Key points
This is a REST API method that is used by Administrators until ETL module is in eHealth system cluster.
It is method of multi-part type
Only authenticated and authorized NHS employee with appropriate scope can update program medication registry.
Update program medication registry file should be in .csv format.
Specification
Link | Посилання на Apiary або Swagger | |
Resource | /api/registries/medications/program_medications | Посилання на ресурс, наприклад: /api/persons/create |
Scope | medication_registry:write | Scope для доступу |
Components | ePrescription | Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription |
Microservices | API paragraph not found | Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC |
Protocol type | REST | Тип протоколу, який використовується запитом, наприклад: SOAP | REST |
Request type | PATCH | Тип запиту API, наприклад: GET, POST, PATCH… |
Sync/Async | Async | Метод є синхронним чи асинхронним? |
Public/Private/Internal | Internal | Потрібно зазначити тип методу за ступенем доступності |
Logic
Service logic, validations and creation of records - please see details in GraphQL mutation specification
Request structure
Example:
Authorize
Verify the validity of access token
in case of error - return 401 (“Invalid access token”) in case of validation fails
Verify that token is not expired
in case of error - return 401 (“Invalid access token”)
Check user scopes in order to perform this action (scope = 'medication_registry:write')
return 403 (“Your scope does not allow to access this resource. Missing allowances: medication_registry:write”) in case of invalid scope(s)
Headers
Наприклад:
Content-Type:multipart/form-data;boundary=---BOUNDARY
Authorization:Bearer c2778f3064753ea70de870a53795f5c9
Request data validation
Validate request
Check request using schema
Return 422 with the list of validation errors in case validation fails
Check csv_data input according to file structure
Return 422 with the list of validation errors in case validation fails
Check csv_data input file size - csv file with max 30000 lines is allowed.
Return 422
The number of tasks for the job with a sequential execution strategy is limited to 30,000
in case validation fails
File example
Please see examples in GraphQL mutation specification
Processing
API paragraph not found
Response structure
Example:
Post-processing processes
API paragraph not found
HTTP status codes
HTTP status code | Message | What caused the error |
---|---|---|
200 | Response |
|
401 | Invalid access token |
|
403 | Your scope does not allow to access this resource. Missing allowances: medication_registry:write |
|
422 |
| Validation error |
ЕСОЗ - публічна документація