...
Page Properties |
---|
|
Link | https://ehealthmisapi1.docs.apiary.io/#reference/public.-medical-service-provider-integration-layer/equipment/get-equipment-details-by-id | Посилання на Apiary або Swagger | Resource | /api/equipment/{{id}} | Посилання на ресурс, наприклад: /api/persons/create | Scope | equipment:read | Scope для доступу | Components | Equipment | Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription | Microservices | API paragraph not found | Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC | Protocol type | REST | Тип протоколу, який використовується запитом, наприклад: SOAP | REST | Request type | GET | Тип запиту API, наприклад: GET, POST, PATCH… | Sync/Async | Sync | Метод є синхронним чи асинхронним? | Public/Private/Internal | Public | Потрібно зазначити тип методу за ступенем доступності |
|
Logic
Only authenticated and authorized HR, ADMIN, OWNER employees from MSP, OUTPATIENT, PRIMARY_CARE, EMERGENCY legal entities can get the equipment by id.
Service returns only equipment related to the same legal entity as the user. User with role NHS ADMIN can get any equipment from any legal entity.
...
Verify the validity of access token
Return 401 in case validation fails
Check scopes in order to perform this action (scope = 'equipment:read')
Return 403 in case invalid scope(s)
Наприклад:
Content-Type:application/json
...
Page Properties |
---|
|
HTTP status code | Message | What caused the error |
---|
200 | Response | | 401 | | Access token validation failed | 403 | | Invalid scope(s) Validation failed
| 404 | | Validation failed |
|
Prepare response
...