Table of Contents | ||||
---|---|---|---|---|
|
Purpose
Returns This WS is designed to get declaration requests that were created through V2 and V3details
Key features
Only authenticated and authorized user can use declaration requestemployee with appropriate scope can get declaration requests list.
The service returns can return only a declaration request that was created in the same legal entity as the user or assigned to legal entity and shared
Specification
Link |
Resource
/api/v3/declaration_requests/{{id}}
Scope
declaration_request:read
Components
Declarations
Using Microservices
il/api
ops/api
Protocol type
REST
Request type
GET
Sync/Async
API paragraph not found
Public/Private/Internal
Public
Logic
...
Resource | /api/v3/declaration_requests/{{id}} |
Scope | declaration_request:read |
Components | Declarations |
Using Microservices | il/api ops/api |
Protocol type | REST |
Request type | GET |
Sync/Async | API paragraph not found |
Public/Private/Internal | Public |
Logic
Get declaration request details from il.declaration_requests table by declaration request id from request
Generate URL to get signed_content (optional)
Generate URL only in case of:
channel = PIS and status APPROVED
Put url to urgent section
Render response according to specification.
Use ael service
Parameter | Source |
---|---|
action | 'GET' |
bucket | 'DECLARATION_REQUESTS' |
resource_id | :DECLARATION_REQUEST_ID |
resource_name | signed_content |
Validate Declaration request
Check that declaration request:
exists in il DB
is_shareable = true or channel = MIS
belongs to legal entity (get user from token, find employee associated with this user and ensure that this employee has at least one role in the same legal entity as in declaration request)
in case of error - return 404 ('not found')
Input parameters
Filter | Values | Type | Description | Example |
---|---|---|---|---|
id |
| String | request identifier |
|
Authorize
Verify the validity of access token
Return 401in 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 = 'declaration_request:read')
Return 403 in case invalid scope(s)
...
return 403 (“Your scope does not allow to access this resource. Missing allowances: declaration_request:read”) in case of invalid scope(s)
Headers
Content-Type:application/json
Authorization:Bearer c2778f3064753ea70de870a53795f5c9{{access_token}}
X-Custom-PSK:{{secret}}
Response structure
Print form is generated after approve declaration request, so in response on Get declaration request by id show fields context
and data_to_be_signed
if DR approved.
See on Apiary
Expand | ||
---|---|---|
| ||
|
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 shows the declaration requests which are created by V2 and V3. Due to the fact that structure of declaration request V2 is different from the structure of declaration request V3 , so not all fields of declaration request v2 can be displayed.