ЕСОЗ - публічна документація

Get licenses

Purpose

This WS allows to get a list of licenses for a legal entity. Used by legal entity employees to receive full information about primary and additional licenses of legal entity

Key points

  1. This REST method is used by MIS.

  2. Only authenticated and authorized user with appropriate scope can get licenses list.

Specification

Link

https://ehealthmisapi1.docs.apiary.io/#reference/public.-medical-service-provider-integration-layer/licenses/get-licenses

Посилання на Apiary або Swagger

Resource

/api/licenses

Посилання на ресурс, наприклад: /api/persons/create

Scope

license:read

Scope для доступу

Components

Legal Entities

Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: 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

  1. Extract client_id from token.

  2. Filter active licenses:

    1. for current legal entity from token (licenses.legal_entity_id=$.client_id).

    2. by search params.

  3. Render found licenses with all fields from DB.

Input parameters

No

Filters

Filter

Values

Type

Description

Example

Filter

Values

Type

Description

Example

id

 

String

Optional

d290f1ee-6c54-4b01-90e6-d701748f0851

license_number

 

String

Optional

fd12344344

type

 

String

Dictionary LICENSE_TYPE.

Optional

MSP

is_primary

  • true

  • false

Boolean

primary or additional license flag

 

page

 

Number

Page number.

Required

2

page_size

 

Number

A limit on the number of objects to be returned, between 1 and 100. Default: 50.

Required

50

Request structure

API paragraph not found

Authorize

  • Verify the validity of MIS client secret

    • in case of error - return 401 (“Invalid access token”)

  • 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:read')

    • return 403 (“Your scope does not allow to access this resource. Missing allowances: license:read”) in case of invalid scope(s)

Headers

API paragraph not found

Validate request

API paragraph not found

Request data validation

API paragraph not found

Processing

API paragraph not found

Response structure

See on Apiary

Example:

{ "meta": { "code": 200, "url": "https://example.com/resource", "type": "object", "request_id": "req-adasdoijasdojsda" }, "data": [ { "id": "d290f1ee-6c54-4b01-90e6-d701748f0851", "type": "MSP", "license_number": "fd123443", "issued_by": "Кваліфікацйна комісія", "issued_date": "2022-02-28", "expiry_date": "2026-02-28", "active_from_date": "2022-02-28", "what_licensed": "реалізація наркотичних засобів", "order_no": "ВА43234", "legal_entity_id": "28d9c1be-08f0-403b-aa76-bff228c9904f", "is_primary": true } ], "paging": { "page_number": 2, "page_size": 50, "total_entries": 1000, "total_pages": 23 } }

Post-processing processes

No

HTTP status codes

HTTP status code

Message

What caused the error

HTTP status code

Message

What caused the error

200

Response

 

401

Invalid access token

 

403

Your scope does not allow to access this resource. Missing allowances: license:read

 

Backward compatibility

API paragraph not found

 

ЕСОЗ - публічна документація