Purpose
Use this method to obtain a list of Declaration Requests for an employee_id
Key features
Only authenticated and authorized user can use declaration requests.
Specification
Link | |
Resource | /api/v3/declaration_requests |
Scope | declaration_request:read |
Components | Declarations |
Microservices | il/api ops/api |
Protocol type | REST |
Request type | GET |
Sync/Async | API paragraph not found |
Public/Private/Internal | Public |
Logic
If you want to reduce amount of data that is going trough your application, use status
filter and show only requests that Doctor or Admin is interested in current UI section.
Also we suggest use employee_id
and legal_entity_id
to make sure that end-user understands context of actions that he or she will perform.
Method returns shortened details, to obtain full information - get Declaration Request it by it's ID.
Important
This endpoint shows the declaration requests which are created by V2 and V3. Due to the fact that structure of declaration request V3 is different from the structure of declaration request V2 , so not all fields of declaration request v2 can be displayed. If declaration request is created by v2, the field person_id
will be empty.
Filters
Filter | Values | Type | Description | Example |
---|---|---|---|---|
employee_id |
| String | user_id of a doctor |
|
legal_entity_id | String | MSP ID |
| |
status |
| Enum |
|
|
page | Number | Page number | 2 | |
page_size | Number | A limit on the number of objects to be returned, between 1 and 100. Default: 50 | 50 |
Authorize
Verify the validity of access token
Return 401 in case validation fails
Check scopes in order to perform this action (scope = 'declaration_request:read')
Return 403 in case invalid scope(s)
Request to process the request using a token in the headers.
Headers
Content-Type:application/json
Authorization:Bearer c2778f3064753ea70de870a53795f5c9
Response structure
See on Apiary
HTTP status codes
HTTP status code | Message | What caused the error |
---|---|---|
200 | Response |
|
401 |
| Access token validation failed |
403 |
| Invalid scope |
Backward compatibility
This endpoint returns declaration requests that were created through V2 and V3. Field person_id
will be empty for declaration request V2.