Return current module configuration summary and entitlement models.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/admin/entitlement-operations"),};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/admin/entitlement-operations';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/workspace/admin/entitlement-operationsAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
Full Moltaro Entitlement Operations configuration detail.
object
Moltaro Entitlement Operations module summary for the Modules hub.
object
Available admin actions for the current module state.
object
Configured entitlement model aggregate.
object
Party role owned by an entitlement model.
object
Party role owned by an entitlement model.
object
Resource role owned by an entitlement model.
object
Resource role owned by an entitlement model.
object
Delegation path owned by an entitlement model.
object
One resolved step inside a relationship path option.
object
Resource hierarchy path owned by an entitlement model.
object
One resolved step inside a relationship path option.
object
Small plan preview used only by the module overview model list.
object
Server-computed actions allowed for one entitlement model.
object
object
object
object
object
Example
{ "Data": { "Summary": { "ConfigurationState": 0 }, "EntitlementModels": [ { "ModelType": 0, "PartyType": 0, "AccessMode": 0, "ResourceScopeMode": 0, "OwnerParty": { "RoleKind": 0, "InstancePickerInputType": 0, "InstanceLookupTableSelectorMode": 0 }, "DelegateParty": { "RoleKind": 0, "InstancePickerInputType": 0, "InstanceLookupTableSelectorMode": 0 }, "Resource": { "RoleKind": 0, "ResourcePickerInputType": 0, "ResourceLookupTableSelectorMode": 0 }, "RelatedResource": { "RoleKind": 0, "ResourcePickerInputType": 0, "ResourceLookupTableSelectorMode": 0 }, "PartyDelegationPath": { "Steps": [ { "Direction": 0 } ] }, "ResourceHierarchyPath": { "Steps": [ { "Direction": 0 } ] } } ] }, "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}