ЕСОЗ - публічна документація
(GraphQL) Get Global Parameters
Purpose
This WS is designed to allow NHS employee with assigned appropriate scopes to get information about global parameters.
Specification
Link |
| Посилання на Apiary або Swagger |
Resource | /graphql | Посилання на ресурс, наприклад: /api/persons/create |
Scope | global_parameters:read | Scope для доступу |
Components | GlobalParameters | Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription |
Microservices | fe/admin-web | Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC |
Protocol type | GraphQL | Тип протоколу, який використовується запитом, наприклад: SOAP | REST |
Request type | POST | Тип запиту API, наприклад: GET, POST, PATCH… |
Sync/Async | Sync | Метод є синхронним чи асинхронним? |
Public/Private/Internal | Private | Потрібно зазначити тип методу за ступенем доступності |
Logic
This is a graphQl query method used in Administration panel only to get global parameters data . Only authenticated and authorized NHS employee with appropriate scope can get global parameters data.
Request structure
Example:
Authorize
Request to process the request using a token in the headers.
Verify the validity of access token
Return
401
in case validation fails
Verify that token is not expired
in case of error - return (
401
, 'Invalid access token')
Check user scopes
global_parameters:read
in order to get global parametersReturn
403
in case invalid scope(s) "Your scope does not allow to access this resource. Missing allowances: global_parameters:read“
Headers
Content-Type:application/json
Authorization:Bearer {{access_token}}
Request data validation
Processing
Get data from prm DB.
Render a response according to specification.
Response structure
Example:
HTTP status codes
HTTP status code | Message | What caused the error |
---|---|---|
200 | Response |
|
401 | Access denied | Invalid token |
403 | Your scope does not allow to access this resource. Missing allowances: {{scope}} | Scope is missing |
ЕСОЗ - публічна документація