latestOpenAPI 3.0.12026-08-16171142480.4 KB

ff1699330afa

Key Management API

Get available DTO fields for access policy

Returns a list of all visible fields in AccountDTO, AccountInformationDTO and CopierDTO that can be controlled via API key access policy. Fields annotated with @Hidden or @Schema(hidden=true) are excluded.

get/rest/api/v1/projects/{projectId}/apiKeys/availableFields

Path parameters

projectIdstring uuid required

Response

OK

descriptionstring

Field description from @Schema annotation if available

dtoClassNamestring

The DTO class name this field belongs to

fieldNamestring

Field name

fieldTypestring

Field Java type

Example response

[
  {
    "dtoClassName": "AccountInformationDTO",
    "fieldName": "balance",
    "fieldType": "java.math.BigDecimal"
  }
]