Table of Contents |
---|
...
- only employees with scope "related_legal_entities:read" can get list of related legal entities
- it's possible to see only children legal entities (GET /legal_entities/{{id}}/related{?page,page_size})
Validation
Validate token
- Verify the validity of access token
- Return 401 in case validation fails
- token is not expired
- in case error return 401
Validate scopes
- Check user scopes in order to perform this action (scope = 'related_legal_entities:read')
- Return 403 in case invalid scope(s) -"Your scope does not allow to access this resource. Missing allowances: related_legal_entities:read"
Validate client
- Check $id =tokens.details.client_id
- Return 403 in case of error -"User is not allowed to view"
Validate context
Return response to user limited by context from user's token
...