Apollo Config Releases API

Release and publish management

Operations 4

GET /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/latest Get latest release #
POST /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases Publish a release #
PUT /openapi/v1/envs/{env}/releases/{releaseId}/rollback Rollback a release #
POST /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/gray-del-releases Create a gray release #

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/apollo-config-releases-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

apollo-config-releases-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apollo Config Open Apps Releases API
  description: Apollo Open API for configuration management including app management, namespace management, configuration publishing, and release management. Apollo provides centralized configuration management for distributed systems with real-time push, versioning, and gray release support.
  version: 2.2.0
  contact:
    name: Apollo Config
    url: https://www.apolloconfig.com/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8070
  description: Local Apollo Portal
- url: http://{portal_host}:{port}
  description: Custom Apollo Portal
  variables:
    portal_host:
      default: localhost
    port:
      default: '8070'
security:
- PortalToken: []
tags:
- name: Releases
  description: Release and publish management
paths:
  /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/latest:
    get:
      operationId: getLatestRelease
      summary: Get latest release
      description: Returns the latest active release for a namespace.
      tags:
      - Releases
      parameters:
      - $ref: '#/components/parameters/env'
      - $ref: '#/components/parameters/appId'
      - $ref: '#/components/parameters/clusterName'
      - $ref: '#/components/parameters/namespaceName'
      responses:
        '200':
          description: Latest release
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Release'
        '404':
          description: No releases found
  /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases:
    post:
      operationId: createRelease
      summary: Publish a release
      description: Publishes current configuration items as a new release.
      tags:
      - Releases
      parameters:
      - $ref: '#/components/parameters/env'
      - $ref: '#/components/parameters/appId'
      - $ref: '#/components/parameters/clusterName'
      - $ref: '#/components/parameters/namespaceName'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - releaseTitle
              - releasedBy
              properties:
                releaseTitle:
                  type: string
                  description: Title for the release
                releaseComment:
                  type: string
                  description: Optional comment
                releasedBy:
                  type: string
                  description: User who is publishing
      responses:
        '200':
          description: Release created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Release'
  /openapi/v1/envs/{env}/releases/{releaseId}/rollback:
    put:
      operationId: rollbackRelease
      summary: Rollback a release
      description: Rolls back to a previous release by release ID.
      tags:
      - Releases
      parameters:
      - $ref: '#/components/parameters/env'
      - name: releaseId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: operator
        in: query
        required: true
        schema:
          type: string
        description: Operator performing the rollback
      responses:
        '200':
          description: Rollback successful
  /openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/gray-del-releases:
    post:
      operationId: createGrayRelease
      summary: Create a gray release
      description: Creates a gray (canary) release for a subset of instances.
      tags:
      - Releases
      parameters:
      - $ref: '#/components/parameters/env'
      - $ref: '#/components/parameters/appId'
      - $ref: '#/components/parameters/clusterName'
      - $ref: '#/components/parameters/namespaceName'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - releaseTitle
              - releasedBy
              - grayDelKeys
              properties:
                releaseTitle:
                  type: string
                releaseComment:
                  type: string
                releasedBy:
                  type: string
                grayDelKeys:
                  type: array
                  items:
                    type: string
                  description: Keys to include in the gray release
      responses:
        '200':
          description: Gray release created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Release'
components:
  schemas:
    Release:
      type: object
      properties:
        id:
          type: integer
          format: int64
        appId:
          type: string
        clusterName:
          type: string
        namespaceName:
          type: string
        name:
          type: string
          description: Release title
        comment:
          type: string
        isAbandoned:
          type: boolean
        configurations:
          type: object
          additionalProperties:
            type: string
          description: Key-value configuration snapshot at release time
        dataChangeCreatedBy:
          type: string
        dataChangeLastModifiedBy:
          type: string
        dataChangeCreatedTime:
          type: string
          format: date-time
        dataChangeLastModifiedTime:
          type: string
          format: date-time
  parameters:
    namespaceName:
      name: namespaceName
      in: path
      required: true
      schema:
        type: string
      description: Namespace name (default is 'application')
    clusterName:
      name: clusterName
      in: path
      required: true
      schema:
        type: string
      description: Cluster name (default is 'default')
    appId:
      name: appId
      in: path
      required: true
      schema:
        type: string
      description: Application ID
    env:
      name: env
      in: path
      required: true
      schema:
        type: string
      description: Environment (e.g., DEV, FAT, UAT, PRO)
  securitySchemes:
    PortalToken:
      type: apiKey
      name: Authorization
      in: header
      description: Apollo Portal open API token