How do i create and manage the Tenants in nuxeo using API ?
create and manage 'new tenant' into Nuxeo using APIs exposed by Nuxeo. I should be able to create Tenant, Update Tenant and its Configuration and Delete Tenant and list Tenants.
Hi!
In Nuxeo, we expose to the Rest API what we call Automation Operations, you can have the full description here: http://doc.nuxeo.com/x/FIAO
So it means that for each module, to know the default possibilities, you have to look at the automation operations available for it. In case of multi-tenant, there are 2 operations as you can see here: https://github.com/nuxeo/nuxeo-multi-tenant/tree/master/src/main/java/org/nuxeo/ecm/multi/tenant/operations
So for the use case you mentioned, you would probably have to write your own operations to expose the feature you'd like. Our Eclipse plugin is here to help you do that: http://doc.nuxeo.com/x/qInZ
Hope it will help you!
Fred