Argo CD VersionService API

The VersionService API from Argo CD — 1 operation(s) for versionservice.

OpenAPI Specification

argo-cd-versionservice-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: Argo CD REST API for managing GitOps continuous delivery on Kubernetes. Authentication uses JWT bearer tokens obtained via the /api/v1/session endpoint.
  title: Argo CD AccountService VersionService API
  version: 2.14.0
  x-type: opensource
  x-generated-from: documentation
consumes:
- application/json
produces:
- application/json
security:
- BearerToken: []
tags:
- name: VersionService
paths:
  /api/version:
    get:
      tags:
      - VersionService
      summary: Argo CD Version Returns Version Information of the API Server
      operationId: VersionService_Version
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/versionVersionMessage'
        default:
          description: An unexpected error response.
          schema:
            $ref: '#/definitions/runtimeError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
definitions:
  versionVersionMessage:
    type: object
    title: VersionMessage represents version of the Argo CD API server
    properties:
      BuildDate:
        type: string
      Compiler:
        type: string
      ExtraBuildInfo:
        type: string
      GitCommit:
        type: string
      GitTag:
        type: string
      GitTreeState:
        type: string
      GoVersion:
        type: string
      HelmVersion:
        type: string
      JsonnetVersion:
        type: string
      KubectlVersion:
        type: string
      KustomizeVersion:
        type: string
      Platform:
        type: string
      Version:
        type: string
  protobufAny:
    type: object
    properties:
      type_url:
        type: string
      value:
        type: string
        format: byte
  runtimeError:
    type: object
    properties:
      code:
        type: integer
        format: int32
      details:
        type: array
        items:
          $ref: '#/definitions/protobufAny'
      error:
        type: string
      message:
        type: string
securityDefinitions:
  BearerToken:
    type: apiKey
    in: header
    name: Authorization
    description: 'JWT Bearer token. Format: Bearer <token>'