List function-backed UI actions for an entity definition.
GET
/api/workspace/admin/entity-definitions/{entityDefinitionId}/ui/actions
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/entity-definitions/example/ui/actions"),};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/entity-definitions/example/ui/actions';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/entity-definitions/example/ui/actionsAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”entityDefinitionId
required
string
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
Array<object>
Designer-owned action connecting a business function to a compatible UI surface context.
object
Id
Action identifier.
string
BusinessFunctionId
Bound business function identifier.
string
EntityDefinitionId
Entity definition identifier for entity-scoped action targets.
string
EntityUiSurfaceModelId
Entity UI surface model identifier when bound to a concrete surface.
string
Surface
integer format: int32
ActionTargetScope
integer format: int32
Placement
integer format: int32
ToolbarPresentation
integer format: int32
SortOrder
Action order within the placement.
integer format: int32
IsEnabled
Whether the binding is enabled.
boolean
Label
Optional label override.
string
Icon
Optional icon override.
string
Color
Vuetify color token.
string
Variant
Vuetify variant token.
string
PermissionKey
Optional action-specific permission gate.
string
RowVersion
Concurrency token.
string format: uuid
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": [ { "Surface": 0, "ActionTargetScope": 0, "Placement": 0, "ToolbarPresentation": 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"}