latestOpenAPI 3.0.12026-08-16171142480.4 KB

ff1699330afa

Account API

Get all API keys for an account

get/rest/api/v1/accounts/{accountId}/apiKeys

Path parameters

accountIdstring uuid required

Response

OK

accountIdstring uuid

You have to set it during resource creation, after that, it is only read-only

aliasstring
idinteger
keystring
permissionType'READ_WRITE' | 'READ_ONLY'

Permission type: READ_WRITE or READ_ONLY

projectIdstring uuid

You have to set it during resource creation, after that, it is only read-only

Example response

[
  {
    "accessPolicy": {
      "enabled": true,
      "endpointPolicyMode": "ALLOW_LIST",
      "endpoints": [
        {
          "method": "GET",
          "path": "/rest/api/v1/projects/{projectId}/strategies"
        }
      ],
      "fieldPolicyMode": "DENY_LIST",
      "fields": [
        {
          "dtoClassName": "AccountInformationDTO",
          "fieldName": "balance",
          "fieldType": "java.math.BigDecimal"
        }
      ]
    }
  }
]