Infisical PKI Certificate Profiles API

The PKI Certificate Profiles API from Infisical — 12 operation(s) for pki certificate profiles.

Operations 18

POST /api/v1/cert-manager/certificate-profiles #
GET /api/v1/cert-manager/certificate-profiles #
GET /api/v1/cert-manager/certificate-profiles/{id} #
PATCH /api/v1/cert-manager/certificate-profiles/{id} #
DELETE /api/v1/cert-manager/certificate-profiles/{id} #
GET /api/v1/cert-manager/certificate-profiles/slug/{slug} #
GET /api/v1/cert-manager/certificate-profiles/{id}/certificates #
GET /api/v1/cert-manager/certificate-profiles/{id}/certificates/latest-active-bundle #
GET /api/v1/cert-manager/certificate-profiles/{id}/acme/eab-secret/reveal #
POST /api/v1/pki/certificate-profiles
GET /api/v1/pki/certificate-profiles
GET /api/v1/pki/certificate-profiles/{id}
PATCH /api/v1/pki/certificate-profiles/{id}
DELETE /api/v1/pki/certificate-profiles/{id}
GET /api/v1/pki/certificate-profiles/slug/{slug}
GET /api/v1/pki/certificate-profiles/{id}/certificates
GET /api/v1/pki/certificate-profiles/{id}/certificates/latest-active-bundle
GET /api/v1/pki/certificate-profiles/{id}/acme/eab-secret/reveal

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/infisical-pki-certificate-profiles-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

infisical-pki-certificate-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infisical Admin PKI Certificate Profiles API
  description: List of all available APIs that can be consumed
  version: 0.0.1
servers:
- url: https://us.infisical.com
  description: Production server (US)
- url: https://eu.infisical.com
  description: Production server (EU)
- url: http://localhost:8080
  description: Local server
tags:
- name: PKI Certificate Profiles
paths:
  /api/v1/cert-manager/certificate-profiles:
    post:
      operationId: createCertificateProfile
      tags:
      - PKI Certificate Profiles
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                caId:
                  type: string
                  format: uuid
                certificatePolicyId:
                  type: string
                  format: uuid
                slug:
                  type: string
                  minLength: 1
                  maxLength: 255
                  pattern: ^[a-z0-9-]+$
                description:
                  type: string
                  maxLength: 1000
                issuerType:
                  type: string
                  enum:
                  - ca
                  - self-signed
                  default: ca
                externalConfigs:
                  anyOf:
                  - type: object
                    properties:
                      template:
                        type: string
                        minLength: 1
                        description: Certificate template name for Azure AD CS
                    required:
                    - template
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                  - type: object
                    properties: {}
                    additionalProperties: false
                defaults:
                  type:
                  - object
                  - 'null'
                  properties:
                    ttlDays:
                      type: integer
                      exclusiveMinimum: 0
                    commonName:
                      type: string
                    keyAlgorithm:
                      type: string
                      enum:
                      - RSA_2048
                      - RSA_3072
                      - RSA_4096
                      - EC_prime256v1
                      - EC_secp384r1
                      - EC_secp521r1
                      - ML-DSA-44
                      - ML-DSA-65
                      - ML-DSA-87
                      - SLH-DSA-SHA2-128f
                      - SLH-DSA-SHA2-128s
                      - SLH-DSA-SHA2-192f
                      - SLH-DSA-SHA2-192s
                      - SLH-DSA-SHA2-256f
                      - SLH-DSA-SHA2-256s
                      - SLH-DSA-SHAKE-128f
                      - SLH-DSA-SHAKE-128s
                      - SLH-DSA-SHAKE-192f
                      - SLH-DSA-SHAKE-192s
                      - SLH-DSA-SHAKE-256f
                      - SLH-DSA-SHAKE-256s
                    signatureAlgorithm:
                      type: string
                      enum:
                      - RSA-SHA256
                      - RSA-SHA384
                      - RSA-SHA512
                      - ECDSA-SHA256
                      - ECDSA-SHA384
                      - ECDSA-SHA512
                      - ML-DSA-44
                      - ML-DSA-65
                      - ML-DSA-87
                      - SLH-DSA-SHA2-128f
                      - SLH-DSA-SHA2-128s
                      - SLH-DSA-SHA2-192f
                      - SLH-DSA-SHA2-192s
                      - SLH-DSA-SHA2-256f
                      - SLH-DSA-SHA2-256s
                      - SLH-DSA-SHAKE-128f
                      - SLH-DSA-SHAKE-128s
                      - SLH-DSA-SHAKE-192f
                      - SLH-DSA-SHAKE-192s
                      - SLH-DSA-SHAKE-256f
                      - SLH-DSA-SHAKE-256s
                    keyUsages:
                      type: array
                      items:
                        type: string
                        enum:
                        - digital_signature
                        - key_encipherment
                        - non_repudiation
                        - data_encipherment
                        - key_agreement
                        - key_cert_sign
                        - crl_sign
                        - encipher_only
                        - decipher_only
                    extendedKeyUsages:
                      type: array
                      items:
                        type: string
                        enum:
                        - client_auth
                        - server_auth
                        - code_signing
                        - email_protection
                        - ocsp_signing
                        - time_stamping
                    basicConstraints:
                      type: object
                      properties:
                        isCA:
                          type: boolean
                        pathLength:
                          type: integer
                          minimum: 0
                      required:
                      - isCA
                      additionalProperties: false
                    organization:
                      type: string
                    organizationalUnit:
                      type: string
                    country:
                      type: string
                    state:
                      type: string
                    locality:
                      type: string
                  additionalProperties: false
              required:
              - certificatePolicyId
              - slug
              additionalProperties: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  certificateProfile:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      caId:
                        type:
                        - string
                        - 'null'
                        format: uuid
                      certificatePolicyId:
                        type: string
                        format: uuid
                      slug:
                        type: string
                      description:
                        type:
                        - string
                        - 'null'
                      enrollmentType:
                        type: string
                      estConfigId:
                        type:
                        - string
                        - 'null'
                        format: uuid
                      apiConfigId:
                        type:
                        - string
                        - 'null'
                        format: uuid
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      acmeConfigId:
                        type:
                        - string
                        - 'null'
                        format: uuid
                      issuerType:
                        type: string
                        default: ca
                      externalConfigs:
                        anyOf:
                        - type: object
                          properties:
                            template:
                              type: string
                              minLength: 1
                              description: Certificate template name for Azure AD CS
                          required:
                          - template
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                        - type: object
                          properties: {}
                          additionalProperties: false
                      defaults:
                        type:
                        - object
                        - 'null'
                        properties:
                          ttlDays:
                            type: number
                          commonName:
                            type: string
                          keyAlgorithm:
                            type: string
                            enum:
                            - RSA_2048
                            - RSA_3072
                            - RSA_4096
                            - EC_prime256v1
                            - EC_secp384r1
                            - EC_secp521r1
                            - ML-DSA-44
                            - ML-DSA-65
                            - ML-DSA-87
                            - SLH-DSA-SHA2-128f
                            - SLH-DSA-SHA2-128s
                            - SLH-DSA-SHA2-192f
                            - SLH-DSA-SHA2-192s
                            - SLH-DSA-SHA2-256f
                            - SLH-DSA-SHA2-256s
                            - SLH-DSA-SHAKE-128f
                            - SLH-DSA-SHAKE-128s
                            - SLH-DSA-SHAKE-192f
                            - SLH-DSA-SHAKE-192s
                            - SLH-DSA-SHAKE-256f
                            - SLH-DSA-SHAKE-256s
                          signatureAlgorithm:
                            type: string
                            enum:
                            - RSA-SHA256
                            - RSA-SHA384
                            - RSA-SHA512
                            - ECDSA-SHA256
                            - ECDSA-SHA384
                            - ECDSA-SHA512
                            - ML-DSA-44
                            - ML-DSA-65
                            - ML-DSA-87
                            - SLH-DSA-SHA2-128f
                            - SLH-DSA-SHA2-128s
                            - SLH-DSA-SHA2-192f
                            - SLH-DSA-SHA2-192s
                            - SLH-DSA-SHA2-256f
                            - SLH-DSA-SHA2-256s
                            - SLH-DSA-SHAKE-128f
                            - SLH-DSA-SHAKE-128s
                            - SLH-DSA-SHAKE-192f
                            - SLH-DSA-SHAKE-192s
                            - SLH-DSA-SHAKE-256f
                            - SLH-DSA-SHAKE-256s
                          keyUsages:
                            type: array
                            items:
                              type: string
                              enum:
                              - digital_signature
                              - key_encipherment
                              - non_repudiation
                              - data_encipherment
                              - key_agreement
                              - key_cert_sign
                              - crl_sign
                              - encipher_only
                              - decipher_only
                          extendedKeyUsages:
                            type: array
                            items:
                              type: string
                              enum:
                              - client_auth
                              - server_auth
                              - code_signing
                              - email_protection
                              - ocsp_signing
                              - time_stamping
                          basicConstraints:
                            type: object
                            properties:
                              isCA:
                                type: boolean
                              pathLength:
                                type: number
                            required:
                            - isCA
                            additionalProperties: false
                          organization:
                            type: string
                          organizationalUnit:
                            type: string
                          country:
                            type: string
                          state:
                            type: string
                          locality:
                            type: string
                        additionalProperties: false
                      scepConfigId:
                        type:
                        - string
                        - 'null'
                        format: uuid
                    required:
                    - id
                    - certificatePolicyId
                    - slug
                    - enrollmentType
                    - createdAt
                    - updatedAt
                    additionalProperties: false
                required:
                - certificateProfile
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 400
                  message:
                    type: string
                  error:
                    type: string
                  details: {}
                required:
                - reqId
                - statusCode
                - message
                - error
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 401
                  message:
                    type: string
                  error:
                    type: string
                required:
                - reqId
                - statusCode
                - message
                - error
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 403
                  message:
                    type: string
                  details: {}
                  error:
                    type: string
                required:
                - reqId
                - statusCode
                - message
                - error
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 404
                  message:
                    type: string
                  error:
                    type: string
                required:
                - reqId
                - statusCode
                - message
                - error
                additionalProperties: false
        '422':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 422
                  message: {}
                  error:
                    type: string
                required:
                - reqId
                - statusCode
                - error
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                    - 500
                  message:
                    type: string
                  error:
                    type: string
                required:
                - reqId
                - statusCode
                - message
                - error
                additionalProperties: false
    get:
      operationId: listCertificateProfiles
      tags:
      - PKI Certificate Profiles
      parameters:
      - schema:
          type: number
          minimum: 0
          default: 0
        in: query
        name: offset
        required: false
      - schema:
          type: number
          minimum: 1
          maximum: 100
          default: 20
        in: query
        name: limit
        required: false
      - schema:
          type: string
        in: query
        name: search
        required: false
      - schema:
          type: string
          enum:
          - api
          - est
          - acme
          - scep
        in: query
        name: enrollmentType
        required: false
      - schema:
          type: string
          enum:
          - ca
          - self-signed
        in: query
        name: issuerType
        required: false
      - schema:
          type: string
          format: uuid
        in: query
        name: caId
        required: false
      - schema:
          type: string
          format: uuid
        in: query
        name: applicationId
        required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  certificateProfiles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        caId:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        certificatePolicyId:
                          type: string
                          format: uuid
                        slug:
                          type: string
                        description:
                          type:
                          - string
                          - 'null'
                        enrollmentType:
                          type: string
                        estConfigId:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        apiConfigId:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        acmeConfigId:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        issuerType:
                          type: string
                          default: ca
                        externalConfigs:
                          anyOf:
                          - type: object
                            properties:
                              template:
                                type: string
                                minLength: 1
                                description: Certificate template name for Azure AD CS
                            required:
                            - template
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                          - type: object
                            properties: {}
                            additionalProperties: false
                        defaults:
                          type:
                          - object
                          - 'null'
                          properties:
                            ttlDays:
                              type: number
                            commonName:
                              type: string
                            keyAlgorithm:
                              type: string
                              enum:
                              - RSA_2048
                              - RSA_3072
                              - RSA_4096
                              - EC_prime256v1
                              - EC_secp384r1
                              - EC_secp521r1
                              - ML-DSA-44
                              - ML-DSA-65
                              - ML-DSA-87
                              - SLH-DSA-SHA2-128f
                              - SLH-DSA-SHA2-128s
                              - SLH-DSA-SHA2-192f
                              - SLH-DSA-SHA2-192s
                              - SLH-DSA-SHA2-256f
                              - SLH-DSA-SHA2-256s
                              - SLH-DSA-SHAKE-128f
                              - SLH-DSA-SHAKE-128s
                              - SLH-DSA-SHAKE-192f
                              - SLH-DSA-SHAKE-192s
                              - SLH-DSA-SHAKE-256f
                              - SLH-DSA-SHAKE-256s
                            signatureAlgorithm:
                              type: string
                              enum:
                              - RSA-SHA256
                              - RSA-SHA384
                              - RSA-SHA512
                              - ECDSA-SHA256
                              - ECDSA-SHA384
                              - ECDSA-SHA512
                              - ML-DSA-44
                              - ML-DSA-65
                              - ML-DSA-87
                              - SLH-DSA-SHA2-128f
                              - SLH-DSA-SHA2-128s
                              - SLH-DSA-SHA2-192f
                              - SLH-DSA-SHA2-192s
                              - SLH-DSA-SHA2-256f
                              - SLH-DSA-SHA2-256s
                              - SLH-DSA-SHAKE-128f
                              - SLH-DSA-SHAKE-128s
                              - SLH-DSA-SHAKE-192f
                              - SLH-DSA-SHAKE-192s
                              - SLH-DSA-SHAKE-256f
                              - SLH-DSA-SHAKE-256s
                            keyUsages:
                              type: array
                              items:
                                type: string
                                enum:
                                - digital_signature
                                - key_encipherment
                                - non_repudiation
                                - data_encipherment
                                - key_agreement
                                - key_cert_sign
                                - crl_sign
                                - encipher_only
                                - decipher_only
                            extendedKeyUsages:
                              type: array
                              items:
                                type: string
                                enum:
                                - client_auth
                                - server_auth
                                - code_signing
                                - email_protection
                                - ocsp_signing
                                - time_stamping
                            basicConstraints:
                              type: object
                              properties:
                                isCA:
                                  type: boolean
                                pathLength:
                                  type: number
                              required:
                              - isCA
                              additionalProperties: false
                            organization:
                              type: string
                            organizationalUnit:
                              type: string
                            country:
                              type: string
                            state:
                              type: string
                            locality:
                              type: string
                          additionalProperties: false
                        scepConfigId:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        certificateAuthority:
                          type: object
                          properties:
                            id:
                              type: string
                            status:
                              type: string
                            name:
                              type: string
                            isExternal:
                              type: boolean
                            externalType:
                              type:
                              - string
                              - 'null'
                          required:
                          - id
                          - status
                          - name
                          additionalProperties: false
                        metrics:
                          type: object
                          properties:
                            profileId:
                              type: string
                            totalCertificates:
                              type: number
                            activeCertificates:
                              type: number
                            expiredCertificates:
                              type: number
                            expiringCertificates:
                              type: number
                            revokedCertificates:
                              type: number
                          required:
                          - profileId
                          - totalCertificates
                          - activeCertificates
                          - expiredCertificates
                          - expiringCertificates
                          - revokedCertificates
                          additionalProperties: false
                        estConfig:
                          type: object
                          properties:
                            id:
                              type: string
                            disableBootstrapCaValidation:
                              type: boolean
                            passphrase:
                              type: string
                            caChain:
                              type: string
                          required:
                          - id
                          - disableBootstrapCaValidation
                          additionalProperties: false
                        apiConfig:
                          type: object
                          properties:
                            id:
                              type: string
                            autoRenew:
                              type: boolean
                            renewBeforeDays:
                              type: number
                          required:
                          - id
                          - autoRenew
                          additionalProperties: false
                        acmeConfig:
                          type: object
                          properties:
                            id:
                              type: string
                            directoryUrl:
                              type: string
                            skipDnsOwnershipVerification:
                              type: boolean
                            skipEabBinding:
                              type: boolean
                          required:
                          - id
                          - directoryUrl
                          additionalProperties: false
                        scepConfig:
                          type: object
                          properties:
                            id:
                              type: string
                            scepEndpointUrl:
                              type: string
                            raCertificatePem:
                              type: string
                            raCertExpiresAt:
                              type: string
                              format: date-time
                            includeCaCertInResponse:
                              type: boolean
                            allowCertBasedRenewal:
                              type: boolean
                            challengeType:
                              type: string
                            challengeEndpointUrl:
                              type: string
                            dynamicChallengeExpiryMinutes:
                              type: number
                            dynamicChallengeMaxPending:
                              type: number
                          required:
                          - id
                          - scepEndpointUrl
                          - raCertificatePem
             

# --- truncated at 32 KB (220 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/infisical/refs/heads/main/openapi/infisical-pki-certificate-profiles-api-openapi.yml