Return model editor bootstrap data.
GET
/api/workspace/admin/entitlement-operations/setup
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/setup"),};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/setup';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-operations/setupAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”access_token
string
Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
Media typeapplication/json
object
Data
Bootstrap data for the Moltaro Entitlement Operations model editor.
object
ModelTypes
Supported typed entitlement model descriptors.
Array<object>
One supported typed entitlement model option exposed by the server.
object
ModelType
integer format: int32
Key
string
DisplayName
string
AllowsResourceHierarchy
boolean
PartyTypes
Array<integer>
LimitFamilies
Array<integer>
EntityDefinitions
Eligible EntityDefinitions and compatible fields.
Array<object>
EntityDefinition option shown in setup and settings screens.
object
Id
string
Name
string
DisplayNameSingular
string
DisplayNamePlural
string
Fields
Array<object>
Field option shown in setup and settings screens.
object
Id
string
EntityDefinitionId
string
Key
string
DisplayName
string
FieldType
integer format: int32
ReferenceToEntityDefinitionId
string
IsDisplayNameCompatible
boolean
IsReferenceCompatible
boolean
TableSurfaces
Array<object>
Table surface option shown for runtime lookup selection.
object
Id
string
EntityDefinitionId
string
Key
string
DisplayName
string
IsDefault
boolean
Errors
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Warnings
Array<object>
object
Code
required
string
Message
required
string
Target
string
Field
string
Metadata
object
key
additional properties
string
Type
integer format: int32
Severity
integer format: int32
Success
boolean
Example
{ "Data": { "ModelTypes": [ { "ModelType": 0, "PartyTypes": [ 0 ], "LimitFamilies": [ 0 ] } ], "EntityDefinitions": [ { "Fields": [ { "FieldType": 0 } ] } ] }, "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
Media typeapplication/json
object
type
string
title
string
status
integer format: int32
detail
string
instance
string
key
additional properties
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}