ЕСОЗ - публічна документація
Search Medical programs
- 1 Purpose
- 1.1 Key points
- 2 Specification
- 3 Logic
- 4 Preconditions
- 5 Global and configurable parameters
- 6 Input parameters
- 7 Filters
- 8 Dictionaries
- 9 GraphQL Specification
- 10 Authorize
- 11 Headers
- 12 Request data validation
- 13 Processing
- 14 Response structure
- 15 Post-processing processes
- 16 HTTP status codes
- 17 Backward compatibility
Purpose
This WS allows to search for a medication program.
Key points
This is a graphQl method used in Administration panel only.
Only authenticated and authorized NHS employee with an appropriate scope can search for a medical program.
Specification
Link | See GraphQl Specification | Посилання на Apiary або Swagger |
Resource | See GraphQl Specification | Посилання на ресурс, наприклад: /api/persons/create |
Scope | medical_program:read | Scope для доступу |
Components | API paragraph not found | Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription |
Microservices | API paragraph not found | Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC |
Protocol type | API paragraph not found | Тип протоколу, який використовується запитом, наприклад: SOAP | REST |
Request type | API paragraph not found | Тип запиту API, наприклад: GET, POST, PATCH… |
Sync/Async | API paragraph not found | Метод є синхронним чи асинхронним? |
Logic
Get list of all medical programs filtered by search parameters.
Render list with medical program data according to schema.
Preconditions
API paragraph not found
Global and configurable parameters
API paragraph not found
Input parameters
API paragraph not found
Filters
databaseId - UUID, identifier of the medical program
name- String, name of the medical program
isActive - Boolean, medical program status
type - String, medical program type. Allowed values: MEDICATION, SERVICE
fundingSource - String, according to FUNDING_SOURCE dictionary. Allowed values: NHS, LOCAL
mrBlankType - String, according to MR_BLANK_TYPES dictionary
Dictionaries
API paragraph not found
GraphQL Specification
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 = 'medical_program:read')
return 403 (“Your scope does not allow to access this resource. Missing allowances: medical_program:write”) in case of invalid scope(s).
Headers
API paragraph not found
Request data validation
Validate legal entity
Extract client_id from token.
Check client scopes in order to perform this action (scope = 'medical_program:read')
in case of error - return 403 (“Your scope does not allow to access this resource. Missing allowances: medical_program:read”).
Processing
API paragraph not found
Response structure
API paragraph not found
Post-processing processes
API paragraph not found
HTTP status codes
HTTP status code | Message | What caused the error |
---|---|---|
401 | Invalid access token |
|
403 | Your scope does not allow to access this resource. Missing allowances: medical_program:write |
|
Backward compatibility
API paragraph not found
ЕСОЗ - публічна документація