CorebanqCorebanq Developer Docs
R B A C Configuratorv1

Get Unassigned Endpoints

Returns all API endpoints that only have Administrator role access. These endpoints need role assignments for regular users.

GET/v1/rbac/endpoint-role/unassigned

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/v1/rbac/endpoint-role/unassigned"
[
  {
    "endpoint": "/v1/customers",
    "method": "GET",
    "roles": [
      "Administrator",
      "User",
      "StandardUser"
    ],
    "is_unassigned": false
  }
]
Empty
Empty
Empty