Table of Contents | ||||
---|---|---|---|---|
|
Purpose
...
This WS allows to deactivate division that provide a medical program within user’s legal entity
Specification
...
Page Properties | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Logic
...
This method allows to deactivate division that provide a medical program within user's legal entity.
...
Filter | Values | Type | Description | Example |
---|---|---|---|---|
id | String | Medical program provision identifier |
|
Request structure
...
API paragraph not found
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 = 'medical_program_provision:write')
return 403 “Your scope does not allow to access this resource. Missing allowances: medical_program_provision:write” in case of invalid scope(s)
Request to process the request using a token in the headers
Headers
...
Наприклад:
Content-Type:application/json
Authorization:Bearer F3GF124Df565FDS234SDF34
api-key:aDGFDFGT46S5gFGD
Request data validation
...
Validate legal entity
Extract client_id from token.
Check client scopes in order to perform this action (scope = 'medical_program_provision:write')
in case of error - return 403 “Your scope does not allow to access this resource. Missing allowances: medical_program_provision:write”
Check legal entity status (status = ACTIVE, SUSPENDED)
In case of error - return 422 “Legal entity is not active”
...
Get
medical_program_provision_id
from URL:Check it exists:
in case of error - return 404 “Medical program provision not found”
Check it belongs to division of user’s legal entity:
in case of error - return 409 “Medical program provision does not belong to user’s legal entity”
Check it is active (is_active=true):
in case of error - return 409 “Medical program provision is inactive”
Processing
...
Service logic
Update record with
medical_program_provision_id
according to Data modelset is_active = false
set deactivate_reason = MANUAL_DEACTIVATION (according to PROVISON_DEACTIVATE_REASON dictionary)
set updated_at, updated_by
Response structure
...
See on Apiary
Example:
Expand | ||
---|---|---|
| ||
|
Post-processing processes
...
API paragraph not found
HTTP status codes
...
HTTP status code | Message | What caused the error |
---|---|---|
200 |
|
|
...