VAST Data Certificates API

The Certificates API from VAST Data — 3 operation(s) for certificates.

Operations 6

POST /certificates/validate_compute_cluster_certificates/ Validate compute cluster RKE2 certificates #
GET /certificates/ List certificates #
POST /certificates/ Creates certificates #
DELETE /certificates/{id}/ #
GET /certificates/{id}/ #
PATCH /certificates/{id}/ #

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/vastdata-certificates-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

vastdata-certificates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Certificates API
  version: '1.0'
security:
- ApiToken: []
tags:
- name: Certificates
paths:
  /certificates/validate_compute_cluster_certificates/:
    post:
      description: 'Validates a compute cluster RKE2 certificate chain without creating any objects.

        Checks PEM format, expiration, key-pair matching, chain signature, and CA constraints.

        '
      operationId: certificates_validate_compute_cluster_certificates
      requestBody:
        content:
          application/json:
            schema:
              properties:
                intermediate_certificate:
                  description: PEM-encoded intermediate CA certificate
                  type: string
                intermediate_key:
                  description: PEM-encoded intermediate private key
                  type: string
                root_certificate:
                  description: PEM-encoded root CA certificate
                  type: string
              required:
              - root_certificate
              - intermediate_certificate
              - intermediate_key
              type: object
        x-originalParamName: ValidateComputeClusterCertificatesParams
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                type: object
          description: ''
        '400':
          description: Validation error
      summary: Validate compute cluster RKE2 certificates
      tags:
      - Certificates
  /certificates/:
    get:
      operationId: certificates_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Certificate'
                title: Certificate
                type: array
          description: ''
      summary: List certificates
      tags:
      - Certificates
    post:
      operationId: certificates_create
      requestBody:
        content:
          application/json:
            schema:
              properties:
                ca_certificate:
                  type: string
                cert_type:
                  description: Certificate type
                  enum:
                  - WEBHOOK
                  - KAFKA
                  - KAFKA_MTLS
                  type: string
                certificate:
                  type: string
                name:
                  description: Certificate name
                  type: string
                private_key:
                  type: string
              required:
              - name
              type: object
        x-originalParamName: CertificateCreateParams
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certificate'
          description: ''
      summary: Creates certificates
      tags:
      - Certificates
  /certificates/{id}/:
    delete:
      operationId: certificates_delete
      parameters:
      - $ref: '#/components/parameters/PathId'
      responses:
        '204':
          description: ''
      tags:
      - Certificates
    get:
      operationId: certificates_read
      parameters:
      - $ref: '#/components/parameters/PathId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certificate'
          description: ''
      tags:
      - Certificates
    patch:
      operationId: certificates_partial_update
      parameters:
      - $ref: '#/components/parameters/PathId'
      requestBody:
        content:
          application/json:
            schema:
              properties:
                ca_certificate:
                  type: string
                cert_type:
                  description: Certificate type
                  enum:
                  - WEBHOOK
                  - KAFKA
                  - KAFKA_MTLS
                  type: string
                certificate:
                  type: string
                name:
                  description: Certificate name
                  type: string
                private_key:
                  type: string
              type: object
        x-originalParamName: CertificateModifyParams
      responses:
        '200':
          description: ''
      tags:
      - Certificates
components:
  parameters:
    PathId:
      in: path
      name: id
      required: true
      schema:
        minimum: 1
        type: integer
  schemas:
    Certificate:
      properties:
        ca_certificate:
          format: password
          type: string
        cert_type:
          description: Certificate type
          enum:
          - WEBHOOK
          - KAFKA
          - KAFKA_MTLS
          type: string
        certificate:
          format: password
          type: string
        created:
          format: date-time
          type: string
          x-format: datetime2display
        id:
          type: integer
          x-cli-header: ID
        name:
          type: string
        private_key:
          format: password
          type: string
        state:
          type: string
      type: object
  securitySchemes:
    ApiToken:
      description: Send current valid API token in an Authorization header with format Api-Token <token>.
      in: header
      name: ApiToken
      type: apiKey
    basicAuth:
      description: Basic authentication using VMS user name and password
      scheme: basic
      type: http