CorebanqCorebanq Developer Docs
R B A C Configuratorv1

Get All Endpoint Permissions

Returns all API endpoints with their currently assigned roles

GET/v1/rbac/endpoint-role/endpoints

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

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