HorizonIQ SSL Certificates API

The SSL Certificates API from HorizonIQ — 5 operation(s) for ssl certificates.

Operations 5

GET /ssl-certificates/{certificateId} Get SSL Certificate #
GET /ssl-certificates List SSL Certificates #
POST /ssl-certificates/{certificateId}/finalize Finalize SSL Certificate #
POST /ssl-certificates/{certificateId}/resend-approval SSL Certificate approval #
POST /ssl-certificates/initialize Initialize SSL Certificate #

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/horizoniq-ssl-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

horizoniq-ssl-certificates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Compass Action Items SSL Certificates API
  version: '2023-05-30T22:28:43Z'
  description: HorizonIQ Compass REST API - manage bare metal and cloud infrastructure resources (servers, devices, managed firewalls, OS images, SSL certificates, billing, users, support cases, and action items) on the HorizonIQ (formerly INAP) Compass platform. Assembled from the per-endpoint OpenAPI fragments published at https://compass-horizoniq.readme.io/reference; operationIds and the documented Bearer securityScheme added by API Evangelist.
servers:
- url: https://api.compass.horizoniq.com/{basePath}
  variables:
    basePath:
      default: v1
security:
- bearerAuth: []
tags:
- name: SSL Certificates
paths:
  /ssl-certificates/{certificateId}:
    get:
      description: Retrieves a JSON object containing a single SSL certificate by certificateId.
      parameters:
      - description: The ID of the SSL certificate returned from certificate initialization or can be retrieved from the certificate list endpoint.
        in: path
        name: certificateId
        required: true
        schema:
          type: string
      - description: Required with Compass API token.<br>Provide keyword **Bearer** and space before token.
        in: header
        name: Authorization
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateGetModel'
          description: 200 response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: 404 response
      summary: Get SSL Certificate
      tags:
      - SSL Certificates
      operationId: getSslCertificatesByCertificateId
  /ssl-certificates:
    get:
      description: Retrieves a JSON object containing a list of SSL certificates.
      parameters:
      - description: Object list sort direction.
        in: query
        name: direction
        schema:
          type: string
      - description: Limits the number of returned objects.
        in: query
        name: limit
        schema:
          type: string
      - description: Name of key on which to sort object list.
        in: query
        name: sortby
        schema:
          type: string
      - description: Designates the start index of the object list.
        in: query
        name: offset
        schema:
          type: string
      - description: "Filter on object property.<br> **Example: ?filters[objectPropertyName]=objectPropertyValue**<br> \n[block:callout] { \"type\": \"info\", \"title\": \"Regular Expression Filtering.\", \"body\": \"The property value can be a valid regular expression to better define list results. The regex must contain valid delimiters such as /.\" } [/block]\n"
        in: query
        name: filters
        schema:
          type: object
        style: deepObject
        explode: true
      - description: Required with Compass API token.<br>Provide keyword **Bearer** and space before token.
        in: header
        name: Authorization
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateListModel'
          description: 200 response
      summary: List SSL Certificates
      tags:
      - SSL Certificates
      operationId: getSslCertificates
  /ssl-certificates/{certificateId}/finalize:
    post:
      description: "Finalize the creation of an SSL certificate.<br><br> \n[block:callout] { \"type\": \"danger\", \"title\": \"Warning:\", \"body\": \"A valid approver email address returned from certificate initialization must be used to finalize your certificate.\" } [/block]\n"
      parameters:
      - description: The ID of the SSL certificate returned from certificate initialization or can be retrieved from the certificate list endpoint.
        in: path
        name: certificateId
        required: true
        schema:
          type: string
      - description: Required with Compass API token.<br>Provide keyword **Bearer** and space before token.
        in: header
        name: Authorization
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificateFinalizePostModel'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessStringModel'
          description: 200 response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: 404 response
      summary: Finalize SSL Certificate
      tags:
      - SSL Certificates
      operationId: createSslCertificatesByCertificateIdFinalize
  /ssl-certificates/{certificateId}/resend-approval:
    post:
      description: Re-send the ssl certificate approval.
      parameters:
      - description: The ID of the SSL certificate returned from certificate initialization or can be retrieved from the certificate list endpoint.
        in: path
        name: certificateId
        required: true
        schema:
          type: string
      - description: Required with Compass API token.<br>Provide keyword **Bearer** and space before token.
        in: header
        name: Authorization
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessStringModel'
          description: 200 response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: 404 response
      summary: SSL Certificate approval
      tags:
      - SSL Certificates
      operationId: createSslCertificatesByCertificateIdResendApproval
  /ssl-certificates/initialize:
    post:
      description: "Initialize the creation of a new SSL certificate.<br><br> \n[block:callout] { \"type\": \"info\", \"title\": \"Information:\", \"body\": \"On successful hostname validation, this operation will return a list of valid approver email addresses, one of which must be used to finalize your certificate.\" } [/block]\n"
      parameters:
      - description: Required with Compass API token.<br>Provide keyword **Bearer** and space before token.
        in: header
        name: Authorization
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificateInitializePostModel'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateInitializeResponseModel'
          description: 200 response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: 404 response
      summary: Initialize SSL Certificate
      tags:
      - SSL Certificates
      operationId: createSslCertificatesInitialize
components:
  schemas:
    CertificateInitializePostModel:
      required:
      - contactEmailAddress
      - contactFirstName
      - contactLastName
      - contactPhoneNumber
      - hostname
      type: object
      properties:
        contactEmailAddress:
          type: string
        hostname:
          type: string
        contactFirstName:
          type: string
        contactLastName:
          type: string
        contactPhoneNumber:
          type: string
    CertificateInitializeResponseModel:
      type: object
      properties:
        approverEmails:
          type: array
          items:
            type: string
        success:
          type: boolean
        certId:
          type: string
    SuccessStringModel:
      type: object
      properties:
        success:
          type: string
    CertificateListModel:
      type: object
      properties:
        total:
          type: integer
        offset:
          type: integer
        values:
          type: array
          items:
            type: object
            properties:
              hostname:
                type: string
              createdDate:
                type: number
              expireDate:
                type: number
              certId:
                type: string
              isExpired:
                type: boolean
              status:
                type: string
        limit:
          type: integer
        sortBy:
          type: string
        totalUnfiltered:
          type: integer
        filters:
          type: array
        direction:
          type: integer
    ErrorModel:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: integer
            message:
              type: string
    CertificateFinalizePostModel:
      required:
      - approverEmailAddress
      - csr
      type: object
      properties:
        csr:
          type: string
        approverEmailAddress:
          type: string
    CertificateGetModel:
      type: object
      properties:
        contactEmailAddress:
          type: string
        orderType:
          type: string
        globalSignCertFound:
          type: boolean
        contactFirstName:
          type: string
        intermediateCertificate:
          type: string
        certId:
          type: string
        hostname:
          type: string
        createdDate:
          type: number
        expireDate:
          type: number
        contactLastName:
          type: string
        contactPhoneNumber:
          type: string
        isExpired:
          type: boolean
        serviceId:
          type: string
        x509Certificate:
          type: string
        errors:
          type: array
          items:
            type: string
        status:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API token issued from the Compass portal (Profile > API Tokens). Sent as `Authorization: Bearer <token>`. See https://compass-horizoniq.readme.io/reference/authentication'