Info |
---|
Note |
Сторінка знаходиться в процесі розробки. Інформація на ній може бути застарілою. |
Info |
---|
/wiki/spaces/EN/pages/17591304241 (remove the link block before publishing the document) |
Table of Contents |
---|
Properties of a REST API method document
Page Properties | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||
|
Purpose
This WS intended to get a list of patient approvals filtered by search params.
Logic
Method for receiving a list of patient approvals. It is allowed only for the doctor who has an active declaration with a patient from url (can get all approvals) or approval is granted to user (can get own approval).
Filters
Filter | Values | Type | Description | Example |
---|---|---|---|---|
patient_id |
| String | identifier of the patient |
|
granted_to |
| String | identifier of the employee or legal entity to whom access has been granted |
|
granted_resources |
| String | identifier of the entity for which the approval was created |
|
granted_resource_type |
| String | entity type for which the approval was created |
|
status |
| String | status of approval |
|
reason |
| String | type and identifier of entity based on which approval has been created |
|
access_level |
| String | access level to data |
|
page |
| Number | Page number |
|
page_size |
| Number | A limit on the number of objects to be returned, between 1 and 100. Default: 50 |
|
Service Logic
Service returns all approvals related to the patient filtered by submitted parameters:
Get all approvals by patient_id from approvals collection (MongoDB)
Filter list above by submitted search parameters
Render a response according to specification.
Configuration parameters
Description of the configuration parameters that are used when processing a request in the system
Dictionaries
Provides a list of links to dictionaries that are available in Confluence
Input
...
parameters
Input parameter | Mandatory | Type | Description | Example | ||||||
---|---|---|---|---|---|---|---|---|---|---|
1 | composition_id | M | String ($uuid) (path)Composition object ID | 89678f60-4cdc-4fe3-ae83-e8b3ebd35c59 | ||||||
2 |
Request structure
See on API-specification
Expand | ||
---|---|---|
| ||
|
Headers
Key | Value | Mandatory | Description | Example | |
---|---|---|---|---|---|
1 | Content-Type | application/json | M | Тип контенту | Content-Type:application/json |
2 | Authorization | Bearer c2778f3064753ea70de870a53795f5c9 | M | Перевірка користувача | Authorization:Bearer c2778f3064753ea70de870a53795f5c9 |
3 | api-key | uXhEczJ56adsfh3Ri9SUkc4en | Секретний ключ | api-key:uXhEczJ56adsfh3Ri9SUkc4en |
Request data validation
Authorize
Verify the validity of access token
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 = 'approval:read')
Return (403, 'Your scope does not allow to access this resource. Missing allowances: approval:read') in case of invalid scope(s)
Request to process the request using a token in the headers
Validate Patient
Get Patient identifier from the URL
Check it exists in DB
Return 404 ('Person is not found') in case of error
Validate Approval
Get Approval identifier from the URL
Check it exists in DB
Return 404 ('not found') in case of error
Validate User
Extract user_id from token.
Check user has an active declaration with a patient from URL (can get all approvals) or approval is granted to user (can get own approval: granted_to OR created_by):
Return 200 with empty array in case the employee doesn't have an active declaration with the patient or approval is granted to user
Processing
Response structure examples
See on Apiary
Example:
Expand | ||
---|---|---|
| ||
|
HTTP status codes
Response code | HTTP Status code | Message | Internal name | Description | |||
---|---|---|---|---|---|---|---|
1 | Базові | ||||||
2 | 200 | ||||||
3 | 401 | Invalid access token | |||||
4 | 403 | Your scope does not allow to access this resource. Missing allowances: approval:read | |||||
5 | 404 | Not not found | |||||
36 | 404 | Person is not found | |||||
47 | Специфічні | ||||||
5 | 422 | Only for active MPI record can be created medication request!8 |
Post-processing processes
Description of actions performed on data after processing
Technical modules where the method is used
List of pages describing technical modules where the method is used
Page Properties Report | ||||
---|---|---|---|---|
|
...