Akuity Custom Role Service API

The CustomRoleService API from Akuity — 2 operation(s) for customroleservice.

Operations 5

GET /api/v1/customroles List Custom Roles #
POST /api/v1/customroles Create Custom Role #
DELETE /api/v1/customroles/{id} Delete Custom Role #
GET /api/v1/customroles/{id} Get Custom Role #
PATCH /api/v1/customroles/{id} Update Custom Role #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/akuity-customroleservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

akuity-customroleservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@akuity.io
    name: Akuity
    url: https://docs.akuity.io/akuity-portal/automation/api
  description: The Custom Roles surface of the Akuity Platform REST API (grpc-gateway projection of customrole/v1). Derived mechanically from the protobuf service descriptors and google.api.http annotations published in the akuity/api-client-go Go module.
  title: Akuity Platform API — Custom Roles Custom Role Service API
  version: v1
servers:
- description: Akuity Platform (SaaS)
  url: https://akuity.cloud
security:
- basicAuth: []
tags:
- name: CustomRoleService
paths:
  /api/v1/customroles:
    get:
      operationId: CustomRoleService_ListCustomRoles
      parameters:
      - in: query
        name: organizationId
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/akuity_customrole_v1_ListCustomRolesResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: not found
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: gRPC status error
      summary: List Custom Roles
      tags:
      - CustomRoleService
      x-grpc-method: akuity.customrole.v1.CustomRoleService/ListCustomRoles
    post:
      operationId: CustomRoleService_CreateCustomRole
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/akuity_customrole_v1_CreateCustomRoleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/akuity_customrole_v1_CreateCustomRoleResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: not found
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: gRPC status error
      summary: Create Custom Role
      tags:
      - CustomRoleService
      x-grpc-method: akuity.customrole.v1.CustomRoleService/CreateCustomRole
  /api/v1/customroles/{id}:
    delete:
      operationId: CustomRoleService_DeleteCustomRole
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/akuity_customrole_v1_DeleteCustomRoleResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: not found
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: gRPC status error
      summary: Delete Custom Role
      tags:
      - CustomRoleService
      x-grpc-method: akuity.customrole.v1.CustomRoleService/DeleteCustomRole
    get:
      operationId: CustomRoleService_GetCustomRole
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/akuity_customrole_v1_GetCustomRoleResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: not found
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: gRPC status error
      summary: Get Custom Role
      tags:
      - CustomRoleService
      x-grpc-method: akuity.customrole.v1.CustomRoleService/GetCustomRole
    patch:
      operationId: CustomRoleService_UpdateCustomRole
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/akuity_customrole_v1_UpdateCustomRoleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/akuity_customrole_v1_UpdateCustomRoleResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: permission denied
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: not found
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: gRPC status error
      summary: Update Custom Role
      tags:
      - CustomRoleService
      x-grpc-method: akuity.customrole.v1.CustomRoleService/UpdateCustomRole
components:
  schemas:
    akuity_customrole_v1_DeleteCustomRoleResponse:
      title: akuity.customrole.v1.DeleteCustomRoleResponse
      type: object
    akuity_customrole_v1_GetCustomRoleResponse:
      properties:
        customRole:
          $ref: '#/components/schemas/akuity_customrole_v1_CustomRole'
      title: akuity.customrole.v1.GetCustomRoleResponse
      type: object
    akuity_customrole_v1_CreateCustomRoleResponse:
      properties:
        customRole:
          $ref: '#/components/schemas/akuity_customrole_v1_CustomRole'
      title: akuity.customrole.v1.CreateCustomRoleResponse
      type: object
    akuity_customrole_v1_ListCustomRolesResponse:
      properties:
        customRoles:
          items:
            $ref: '#/components/schemas/akuity_customrole_v1_CustomRole'
          type: array
      title: akuity.customrole.v1.ListCustomRolesResponse
      type: object
    akuity_customrole_v1_UpdateCustomRoleResponse:
      properties:
        customRole:
          $ref: '#/components/schemas/akuity_customrole_v1_CustomRole'
      title: akuity.customrole.v1.UpdateCustomRoleResponse
      type: object
    akuity_customrole_v1_UpdateCustomRoleRequest:
      properties:
        description:
          type: string
        id:
          type: string
        name:
          type: string
        organizationId:
          type: string
        policy:
          type: string
      title: akuity.customrole.v1.UpdateCustomRoleRequest
      type: object
    Status:
      properties:
        code:
          description: gRPC status code (google.rpc.Code)
          format: int32
          type: integer
        details:
          items:
            additionalProperties: true
            type: object
          type: array
        message:
          type: string
      title: google.rpc.Status
      type: object
    akuity_customrole_v1_CreateCustomRoleRequest:
      properties:
        description:
          type: string
        name:
          type: string
        organizationId:
          type: string
        policy:
          type: string
      title: akuity.customrole.v1.CreateCustomRoleRequest
      type: object
    akuity_customrole_v1_CustomRole:
      properties:
        description:
          type: string
        id:
          type: string
        name:
          type: string
        organizationId:
          type: string
        policy:
          type: string
      title: akuity.customrole.v1.CustomRole
      type: object
  securitySchemes:
    basicAuth:
      description: 'HTTP Basic auth: username = AKUITY_API_KEY_ID, password = AKUITY_API_KEY_SECRET.'
      scheme: basic
      type: http