Purpose*
Resend sms on service request
Specification*
Logic*
Method to resend sms on service request. It can be processed in both sync and async methods depends on Server decision.
Input parameters
Input parameter | Values | Type | Description | Example |
---|---|---|---|---|
patient_id | String | Unique patient identifier |
| |
service_request_id | String | Unique service request identifier |
|
Request structure*
API paragraph not found
Authorize*
Verify the validity of access token
Return (401, 'unauthorized') in case of validation fails
Verify that token is not expired
in case of error - return (401, 'unauthorized')
Check user scopes in order to perform this action (scope = 'service_request:write')
Return (403, 'invalid scopes') in case of invalid scope(s)
Request to process the request using a token in the headers
Headers*
Наприклад:
Content-Type:application/json
Authorization:Bearer d368a4b0-4a0e-457a-b267-32359fa6288f
Request data validation*
Validate transition
Resend SMS is allowed only for service requests in the following state:
Status=Active AND Program Processing Status in (New, In Queue)
Get current service request status
Check that status = ‘active' and ProgramProcessinStatus in (’new', 'in_queue')
in case of error - return 409 error ('Service request in status %status% and program_processing_status %program_processing_status% cannot be canceled')
Processing*
Service logic
Send SMS to patient (if authentication_method_current == SMS)
Template = SERVICE_REQUEST_CREATE_SMS
Response structure*
See on Apiary
Example:
Post-processing processes*
API paragraph not found