Table of Contents |
---|
Service logic
- Only authenticated and authorized user can use person request
- Service returns only person request related to the same legal entity as the user
Authentication
- Verify the validity of access token
- Return 401 in case validation fails
- Check scopes in order to perform this action (scope = 'person_request:read')
- Return 403 in case invalid scope(s)
...