Specification
Apiary | |
JSON Schema request | SPECS |
JSON Schema response | calSPECS |
Purpose
This WS is designed to create new medical program.
WS logic
Authorize
- Verify the validity of access token
- In case error - generate 401 response
- Check user scope (scope = 'medical_program:write') in order to perform this action
- In case error - generate 403 response
Validate request (JSON schema)
- Validate request using JSON schemas (TBD):
- Return 422 with list of validation errors in case validation fails (422 EView)
Create new Medical Program
- Create new record in Medical_programs
Destination | Source | Description |
---|---|---|
id | Autogenerated | |
name | Request: $.name | |
same_mnn_in_treatment_period | Request: $.same_mnn_in_treatment_period | |
is_active | Const: true | |
inserted_at | Timestamp: now() | Get current date-time |
inserted_by | Token: user_id | Extract user from token |
updated_at | Timestamp: now() | Get current date-time |
updated_by | Token: user_id | Extract user from token |