ЕСОЗ - публічна документація
Create license
- 1 Purpose
- 1.1 Key points
- 2 Specification
- 3 Logic
- 4 Preconditions
- 5 Input parameters
- 6 Filters
- 7 Request structure
- 8 Authorize
- 9 Headers
- 10 Request data validation
- 10.1 Validate request
- 10.2 Validate legal entity
- 10.3 Validate license type
- 10.4 Validate license dates
- 10.5 Dictionaries
- 11 Processing
- 12 Response structure
- 13 Post-processing processes
- 14 HTTP status codes
- 15 Backward compatibility
Purpose
This WS allows to create a license for a legal entity
Key points
Only authenticated and authorized user with an appropriate scope can create licenses.
The license can be created for PRIMARY_CARE, EMERGENCY, OUTPATIENT, or PHARMACY legal entity.
The license can be created for legal entities in ACTIVE or SUSPENDED statuses.
Only an additional license can be created with this WS.
The additional license can be created for legal entities with an active primary license.
Specification
Link | Посилання на Apiary або Swagger | |
Resource | /api/licenses | Посилання на ресурс, наприклад: /api/persons/create |
Scope | license:write | Scope для доступу |
Components | Legal Entities | Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription |
Microservices | API paragraph not found | Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC |
Protocol type | REST | Тип протоколу, який використовується запитом, наприклад: SOAP | REST |
Request type | POST | Тип запиту API, наприклад: GET, POST, PATCH… |
Sync/Async | Sync | Метод є синхронним чи асинхронним? |
Public/Private/Internal | Public |
|
Logic
Save new license in licenses table (PRM DB)
Preconditions
Legal Entity exists and has Primary license
Input parameters
ATTRIBUTES: see on Apiary
Filters
No
Request structure
Example:
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 = 'license:write')
return 403 (“Your scope does not allow to access this resource. Missing allowances: license:write”) in case of invalid scope(s)
Headers
Content-Type:application/json
Request data validation
Validate request
Validate request using JSON schema
in case of error - return 422
Validate legal entity
Extract legal entity id from access token. Check that legal entity is in ‘ACTIVE’ or ‘SUSPENDED’ status
in case of error - return 422 (“Legal entity must be in active or suspended status”)
Validate license type
Check that additional license was passed in request ($.is_primary = false)
in case of error - return 422 (“Only additional license can be created”)
Check that license type in request exists in
LICENSE_TYPE
dictionaryin case of error - return 422 (“value is not allowed in enum”)
Check that license type in request exists in chart parameter
LEGAL_ENTITY_<LEGAL_ENTITY_TYPE>_ADDITIONAL_LICENSE_TYPES
based on legal entity typein case of error - return 409 (“Legal entity type and license type mismatch")
Check that legal entity has active primary license (request: select id from licenses where is_active=true and is_primary=true and legal_entity_id=$.legal_entity.id and (expiry_date >= current_date() or expiry_date is null); returns at least one value)
in case of error - return 404 (“No active primary license found for legal entity”)
Check that legal entity does not have license with type same as in request ($.type)
in case of error - return 409 (“License with type $.type is already present”) where $.type = license type from request
Validate license dates
Check that $.issued_date is not greater than $.active_from_date
in case of error - return 422 (“License can not be issued later than active from date”)
Check that $.active_from_date is not greater than $.expiry_date
in case of error - return 422 (“License can not have active from date later than expiration date”)
Check that $.expiry_date is not lesser than current_date
in case of error - return 409 (“License is expired”)
Dictionaries
LICENSE_TYPE
LEGAL_ENTITY_<LEGAL_ENTITY_TYPE>_ADDITIONAL_LICENSE_TYPES
Processing
API paragraph not found
Response structure
See on Apiary
Example:
Post-processing processes
No
HTTP status codes
HTTP status code | Message | What caused the error |
---|---|---|
201 | Response |
|
401 | Invalid access token |
|
403 | Your scope does not allow to access this resource. Missing allowances: license:write |
|
404 | No active primary license found for legal entity |
|
409 |
|
|
422 |
|
|
Backward compatibility
API paragraph not found
ЕСОЗ - публічна документація