Table of Contents |
---|
Validate request
- Validate request using JSON schema
- In case validation failed - generate 422 error
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"verification_code": {
"type": "string"
}
},
"required": [
"verification_code"
],
"additionalProperties": false
} |
Authorize user
- Verify the validity of access token
- Check user scopes declaration_request:sign in order to perform this action
- In case error - generate 401 response
Verify code
- Verify the validity of verification code
- In case error - generate 401 response
- Verify the validity of verification code
...