v1

latestOpenAPI 3.1.02026-07-178140423.0 KB
AI Application Config Management

Get Application Config

Get the configuration of an AI application by ID.

get/governance-service/api/ai/application/{id}/config

Path parameters

idinteger required

Response

Successful Response

idinteger nullable

The unique identifier of the resource

statusinteger nullable

The status of the resource

createTimestring

The creation time of the resource

updateTimestring

The last update time of the resource

allowedUsersstring[] nullable

The allowed users for the AI application

allowedGroupsstring[] nullable

The allowed groups for the AI application

allowedRolesstring[] nullable

The allowed roles for the AI application

deniedUsersstring[] nullable

The denied users for the AI application

deniedGroupsstring[] nullable

The denied groups for the AI application

deniedRolesstring[] nullable

The denied roles for the AI application

applicationIdinteger nullable

The application ID

Example response

{
  "allowedGroups": [
    "group1",
    "group2"
  ],
  "allowedRoles": [
    "role1",
    "role2"
  ],
  "allowedUsers": [
    "user1",
    "user2"
  ],
  "applicationId": 1,
  "deniedGroups": [
    "group3",
    "group4"
  ],
  "deniedRoles": [
    "role3",
    "role4"
  ],
  "deniedUsers": [
    "user3",
    "user4"
  ]
}