Scope management

Recover information, delete from your scopes

The ScopeService service displays the following operations:

  • get: to retrieve information from a scope

Scope recovery

The example below shows how to retrieve information from a scope.


GET {{core}}/rest/scope/{idScope} HTTP/1.1

-- Paramètres d'URL --
core: host of FlowerDocs core
idScope: Identifier of scope to be recovered

-- Headers --
token: {{token}}
Content-Type: application/json


    @Autowired
    private ScopeService scopeService;
    
    public List<Scope> get() throws TechnicalException, FunctionalException
    {
        List<Id> ids = Lists.newArrayList(new Id("scopeId"));
        return service.get(ids);
    }