ЕСОЗ - публічна документація
[DRAFT] PIS. Initialize Person documents upload [API-010-001-018-0474]
Сторінка знаходиться в процесі розробки. Інформація на ній може бути застарілою.
https://e-health-ua.atlassian.net/wiki/spaces/EN/pages/17591304241 (remove the link block before publishing the document)
- 1 Properties of a REST API method document
- 2 Purpose
- 2.1 Key points
- 3 Logic
- 3.1 Service logic
- 4 Configuration parameters
- 5 Dictionaries
- 6 Input parameters
- 7 Request structure
- 8 Headers
- 9 Request data validation
- 9.1 Authorization
- 9.2 Validate person
- 10 Processing
- 11 Response structure examples
- 12 HTTP status codes
- 13 Post-processing processes
- 14 Technical modules where the method is used
Properties of a REST API method document
Document type | Метод REST API |
---|---|
Document title | [DRAFT] PIS. Initialize Person documents upload [API-010-001-018-0474] |
Guideline ID | GUI-0011 |
Author | @ |
Document version | 1 |
Document status | DRAFT |
Date of creation | ХХ.ХХ.ХХХХ (дата фінальної версії документа – RC або PROD) |
Date of update | ХХ.ХХ.ХХХХ (дата зміни версії) |
Method API ID | API-010-001-018-0474 |
Microservices (namespace) | MPI |
Component | Master Patient Index |
Component ID | COM-010-001 |
Link на API-специфікацію | |
Resource | {{host}}/api/pis/documents |
Scope | person_documents:write_pis |
Protocol type | REST |
Request type | POST |
Sync/Async | Sync |
Public/Private | Public |
Purpose
This WS is designed to initialize person documents uploading proccess through person information system (PIS).
Key points
This method is used only by PIS.
This method returns list of documents that needs to be uploaded for person and urls. In case no documents must be uploaded - empty list is returned.
Person is obtained from user that performs method.
Logic
Service logic
GService logic
Get list of person documents that must be uploaded to media content storage (for each type of documents, if couple of rules worked - only one file is expected):
Call https://e-health-ua.atlassian.net/wiki/spaces/PCAB/pages/17415995422 , send
person_id
= person.id andconfidant_person_id
=applicant_person_id
(from token)
in case if method returns “ok”:Check for documents with name
confidant_person.{confidant_person_id}.documents_relationship.[:].{type}
If one of persons document has type = ‘BIRTH_CERTIFICATE_FOREIGN’ and there is no same document in {person.confidant_person.[:].documents_relationship.[:]}
and persons age < no_self_auth_age global parameter value then
Check for document with name
person.BIRTH_CERTIFICATE_FOREIGN
If one of persons document has type = ‘PERMANENT_RESIDENCE_PERMIT’ and persons age >= no_self_auth_age global parameter value then
Check for document with name
person.PERMANENT_RESIDENCE_PERMIT
If persons authentication method = ‘OFFLINE’ or ‘THIRD_PERSON’ authentication method = ‘OFFLINE’
Check for documents with name
person.{documents.[:].type} or third_person.{third_person.documents.[:].type}
If person.unzr field is not empty and first 8 digits of unzr != persons birth_date
Check for document with name
person.unzr
If persons age is greater then no_self_registration_age global parameter, but less then person_full_legal_capacity_age global parameter
and one of persons documents has type from PIS_PERSON_LEGAL_CAPACITY_DOCUMENT_TYPESconfig parameter thenGet type of document that has been found
AND check for documents with nameperson.{type}
Check existence of each document in existing media content storages for person:
persons
person_requests
authentication_method_requests
Generate signed urls for each document that must be uploaded but does not exist in persons media content storage.
Render a response according to specification.
Configuration parameters
N/A
Dictionaries
N/A
Input parameters
Input parameter | Mandatory | Type | Description | Example | |
---|---|---|---|---|---|
1 |
|
|
|
|
|
2 |
|
|
|
|
|
Request structure
See on API-specification
Headers
Request data validation
Authorization
Verify the validity of the access token
in case of error - return 401 (“Invalid access token”)
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 = 'person_documents:write_pis')
in case of invalid scope(s) - return 403 (“Your scope does not allow to access this resource. Missing allowances: person_documents:write_pis”)
Validate person
Get
person_id
from userCheck person exists in mpi database and is active (status = ‘active’ and is_active=true)
in case of error - return 404 ('Person does not exist or is not active')
Processing
N/A
Response structure examples
See on API-specification
HTTP status codes
Response code | HTTP Status code | Message | Internal name | Description | |
---|---|---|---|---|---|
1 | Базові | ||||
2 |
|
|
|
|
|
3 |
|
|
|
|
|
4 | Специфічні | ||||
5 |
|
|
|
|
|
Post-processing processes
N/A
Technical modules where the method is used
ЕСОЗ - публічна документація