Armory Agent Accounts Controller API

The agent-accounts-controller API from Armory — 2 operation(s) for agent-accounts-controller.

Operations 2

GET /agents/kubernetes/accounts/{accountName} Retrieve account by name if handled by armory agent #
GET /agents/kubernetes/accounts/{accountName}/namespaces Retrieve namespaces by account name if handled by armory agent #

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/armory-agent-accounts-controller-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

armory-agent-accounts-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Armory Scale Agent Dynamic Accounts Agent Accounts Controller API
  description: Armory-specific endpoints for retrieving Kubernetes accounts and namespaces handled by an Armory Scale Agent.
  version: 0.13.x
  contact:
    name: Armory Docs
    url: https://docs.armory.io/plugins/scale-agent/
  x-origin:
  - format: swagger
    version: '2.0'
    url: https://docs.armory.io/reference/scale-agent/swagger.json
servers:
- url: /
tags:
- name: agent-accounts-controller
paths:
  /agents/kubernetes/accounts/{accountName}:
    get:
      tags:
      - agent-accounts-controller
      summary: Retrieve account by name if handled by armory agent
      operationId: getAccountUsingGET
      parameters:
      - name: accountName
        in: path
        description: accountName
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/KubesvcAccount'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
  /agents/kubernetes/accounts/{accountName}/namespaces:
    get:
      tags:
      - agent-accounts-controller
      summary: Retrieve namespaces by account name if handled by armory agent
      operationId: getNamespacesUsingGET
      parameters:
      - name: accountName
        in: path
        description: accountName
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
components:
  schemas:
    KubesvcAccount:
      type: object
      required:
      - definition
      - definitionAsString
      - name
      - permissions
      - properties
      - propertiesAsString
      properties:
        certFingerprint:
          type: string
        def:
          type: string
        definition:
          type: object
        definitionAsString:
          type: string
        dynamic:
          type: boolean
        errorMessage:
          type: string
        kubeHost:
          type: string
        kubeVersion:
          type: string
        lastUpdated:
          type: integer
          format: int64
        maxWatchAgeSeconds:
          type: integer
          format: int64
        name:
          type: string
        permissions:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        properties:
          type: object
        propertiesAsString:
          type: string
        props:
          type: string
        status:
          type: string
          enum:
          - ACTIVATING
          - ACTIVE
          - DEACTIVATING
          - FAILED
          - INACTIVE
          - TO_DEACTIVATE
          - TO_MIGRATE
          - ORPHANED
        zoneId:
          type: string
      title: KubesvcAccount