Microsoft Azure Functions Certificates API

The Certificates API from Microsoft Azure Functions — 3 operation(s) for certificates.

Operations 6

GET /subscriptions/{subscriptionId}/providers/Microsoft.Web/certificates Get all certificates for a subscription. #
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates Get all certificates in a resource group. #
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name} Get a certificate. #
PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name} Create or update a certificate. #
PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name} Create or update a certificate. #
DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name} Delete a 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/microsoft-azure-functions-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

microsoft-azure-functions-certificates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WebApps API Client AppServiceEnvironments Certificates API
  version: '2025-05-01'
  x-typespec-generated:
  - emitter: '@azure-tools/typespec-autorest'
servers:
- url: https://management.azure.com
security:
- azure_auth:
  - user_impersonation
tags:
- name: Certificates
paths:
  /subscriptions/{subscriptionId}/providers/Microsoft.Web/certificates:
    get:
      operationId: Certificates_List
      tags:
      - Certificates
      summary: Get all certificates for a subscription.
      description: Description for Get all certificates for a subscription.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - name: $filter
        in: query
        description: 'Return only information specified in the filter (using OData syntax). For example: $filter=KeyVaultId eq ''KeyVaultId'''
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateCollection'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        List Certificates for subscription:
          $ref: ./examples/ListCertificates.json
      x-ms-pageable:
        nextLinkName: nextLink
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates:
    get:
      operationId: Certificates_ListByResourceGroup
      tags:
      - Certificates
      summary: Get all certificates in a resource group.
      description: Description for Get all certificates in a resource group.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificateCollection'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        List Certificates by resource group:
          $ref: ./examples/ListCertificatesByResourceGroup.json
      x-ms-pageable:
        nextLinkName: nextLink
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name}:
    get:
      operationId: Certificates_Get
      tags:
      - Certificates
      summary: Get a certificate.
      description: Description for Get a certificate.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter
      - name: name
        in: path
        description: Name of the certificate.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certificate'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        Get Certificate:
          $ref: ./examples/GetCertificate.json
    put:
      operationId: Certificates_CreateOrUpdate
      tags:
      - Certificates
      summary: Create or update a certificate.
      description: Description for Create or update a certificate.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter
      - name: name
        in: path
        description: Name of the certificate.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Resource 'Certificate' update operation succeeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certificate'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        Create Or Update Certificate:
          $ref: ./examples/CreateOrUpdateCertificate.json
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Certificate'
        description: Details of certificate, if it exists already.
        required: true
    patch:
      operationId: Certificates_Update
      tags:
      - Certificates
      summary: Create or update a certificate.
      description: Description for Create or update a certificate.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter
      - name: name
        in: path
        description: Name of the certificate.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certificate'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        Patch Certificate:
          $ref: ./examples/PatchCertificate.json
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificatePatchResource'
        description: Details of certificate, if it exists already.
        required: true
    delete:
      operationId: Certificates_Delete
      tags:
      - Certificates
      summary: Delete a certificate.
      description: Description for Delete a certificate.
      parameters:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter
      - name: name
        in: path
        description: Name of the certificate.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Resource deleted successfully.
        '204':
          description: Resource does not exist.
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorResponse'
      x-ms-examples:
        Delete Certificate:
          $ref: ./examples/DeleteCertificate.json
components:
  schemas:
    CertificateCollection:
      type: object
      description: Collection of certificates.
      properties:
        value:
          type: array
          description: The Certificate items on this page
          items:
            $ref: '#/components/schemas/Certificate'
        nextLink:
          type: string
          format: uri
          description: The link to the next page of items
      required:
      - value
    ProxyOnlyResource:
      type: object
      description: Azure proxy only resource. This resource is not tracked by Azure Resource Manager.
      properties:
        id:
          type: string
          description: Resource Id.
          readOnly: true
        name:
          type: string
          description: Resource Name.
          readOnly: true
        kind:
          type: string
          description: Kind of resource.
        type:
          type: string
          description: Resource type.
          readOnly: true
    DefaultErrorResponse:
      type: object
      description: App Service error response.
      properties:
        error:
          $ref: '#/components/schemas/DefaultErrorResponseError'
          description: Error model.
          readOnly: true
    CertificatePatchResource:
      type: object
      description: ARM resource for a certificate.
      properties:
        properties:
          $ref: '#/components/schemas/CertificatePatchResourceProperties'
          description: CertificatePatchResource resource specific properties
          x-ms-client-flatten: true
      allOf:
      - $ref: '#/components/schemas/ProxyOnlyResource'
    Certificate:
      type: object
      description: SSL certificate for an app.
      properties:
        properties:
          $ref: '#/components/schemas/CertificateProperties'
          description: Certificate resource specific properties
          x-ms-client-flatten: true
        kind:
          type: string
          description: Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
      allOf:
      - $ref: ../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource
    KeyVaultSecretStatus:
      type: string
      description: Status of the Key Vault secret.
      enum:
      - Initialized
      - WaitingOnCertificateOrder
      - Succeeded
      - CertificateOrderFailed
      - OperationNotPermittedOnKeyVault
      - AzureServiceUnauthorizedToAccessKeyVault
      - KeyVaultDoesNotExist
      - KeyVaultSecretDoesNotExist
      - UnknownError
      - ExternalPrivateKey
      - Unknown
      x-ms-enum:
        name: KeyVaultSecretStatus
        modelAsString: false
    HostingEnvironmentProfile:
      type: object
      description: Specification for an App Service Environment to use for this resource.
      properties:
        id:
          type: string
          description: Resource ID of the App Service Environment.
        name:
          type: string
          description: Name of the App Service Environment.
          readOnly: true
        type:
          type: string
          description: Resource type of the App Service Environment.
          readOnly: true
    DefaultErrorResponseError:
      type: object
      description: Error model.
      properties:
        code:
          type: string
          description: Standardized string to programmatically identify the error.
          readOnly: true
        message:
          type: string
          description: Detailed error description and debugging information.
          readOnly: true
        target:
          type: string
          description: Detailed error description and debugging information.
          readOnly: true
        details:
          type: array
          items:
            $ref: '#/components/schemas/DefaultErrorResponseErrorDetailsItem'
          x-ms-identifiers: []
        innererror:
          type: string
          description: More information to debug error.
          readOnly: true
    CertificatePatchResourceProperties:
      type: object
      description: CertificatePatchResource resource specific properties
      properties:
        password:
          type: string
          description: Certificate password.
          readOnly: true
        friendlyName:
          type: string
          description: Friendly name of the certificate.
          readOnly: true
        subjectName:
          type: string
          description: Subject name of the certificate.
          readOnly: true
        hostNames:
          type: array
          description: Host names the certificate applies to.
          items:
            type: string
        pfxBlob:
          type: string
          format: byte
          description: Pfx blob.
        siteName:
          type: string
          description: App name.
          readOnly: true
        selfLink:
          type: string
          description: Self link.
          readOnly: true
        issuer:
          type: string
          description: Certificate issuer.
          readOnly: true
        issueDate:
          type: string
          format: date-time
          description: Certificate issue Date.
          readOnly: true
        expirationDate:
          type: string
          format: date-time
          description: Certificate expiration date.
          readOnly: true
        thumbprint:
          type: string
          description: Certificate thumbprint.
          readOnly: true
        valid:
          type: boolean
          description: Is the certificate valid?.
          readOnly: true
        cerBlob:
          type: string
          format: byte
          description: Raw bytes of .cer file
          readOnly: true
        publicKeyHash:
          type: string
          description: Public key hash.
          readOnly: true
        hostingEnvironmentProfile:
          $ref: '#/components/schemas/HostingEnvironmentProfile'
          description: Specification for the App Service Environment to use for the certificate.
          readOnly: true
        keyVaultId:
          type: string
          description: Key Vault Csm resource Id.
        keyVaultSecretName:
          type: string
          description: Key Vault secret name.
        keyVaultSecretStatus:
          $ref: '#/components/schemas/KeyVaultSecretStatus'
          description: Status of the Key Vault secret.
          readOnly: true
        serverFarmId:
          type: string
          description: 'Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".'
        canonicalName:
          type: string
          description: CNAME of the certificate to be issued via free certificate
        domainValidationMethod:
          type: string
          description: Method of domain validation for free cert
    CertificateProperties:
      type: object
      description: Certificate resource specific properties
      properties:
        password:
          type: string
          description: Certificate password.
        friendlyName:
          type: string
          description: Friendly name of the certificate.
          readOnly: true
        subjectName:
          type: string
          description: Subject name of the certificate.
          readOnly: true
        hostNames:
          type: array
          description: Host names the certificate applies to.
          items:
            type: string
        pfxBlob:
          type: string
          format: byte
          description: Pfx blob.
        siteName:
          type: string
          description: App name.
          readOnly: true
        selfLink:
          type: string
          description: Self link.
          readOnly: true
        issuer:
          type: string
          description: Certificate issuer.
          readOnly: true
        issueDate:
          type: string
          format: date-time
          description: Certificate issue Date.
          readOnly: true
        expirationDate:
          type: string
          format: date-time
          description: Certificate expiration date.
          readOnly: true
        thumbprint:
          type: string
          description: Certificate thumbprint.
          readOnly: true
        valid:
          type: boolean
          description: Is the certificate valid?.
          readOnly: true
        cerBlob:
          type: string
          format: byte
          description: Raw bytes of .cer file
          readOnly: true
        publicKeyHash:
          type: string
          description: Public key hash.
          readOnly: true
        hostingEnvironmentProfile:
          $ref: '#/components/schemas/HostingEnvironmentProfile'
          description: Specification for the App Service Environment to use for the certificate.
          readOnly: true
        keyVaultId:
          type: string
          format: arm-id
          description: Azure Key Vault Csm resource Id.
          x-ms-arm-id-details:
            allowedResources:
            - type: Microsoft.KeyVault/vaults
        keyVaultSecretName:
          type: string
          description: Azure Key Vault secret name.
        keyVaultSecretStatus:
          $ref: '#/components/schemas/KeyVaultSecretStatus'
          description: Status of the Key Vault secret.
          readOnly: true
        serverFarmId:
          type: string
          format: arm-id
          description: Resource ID of the associated App Service plan.
          x-ms-arm-id-details:
            allowedResources:
            - type: Microsoft.Web/serverfarms
        canonicalName:
          type: string
          description: CNAME of the certificate to be issued via free certificate
        domainValidationMethod:
          type: string
          description: Method of domain validation for free cert
    DefaultErrorResponseErrorDetailsItem:
      type: object
      description: Detailed errors.
      properties:
        code:
          type: string
          description: Standardized string to programmatically identify the error.
          readOnly: true
        message:
          type: string
          description: Detailed error description and debugging information.
          readOnly: true
        target:
          type: string
          description: Detailed error description and debugging information.
          readOnly: true
  securitySchemes:
    azure_auth:
      type: oauth2
      flows:
        implicit:
          scopes:
            user_impersonation: impersonate your user account
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
      description: Azure Active Directory OAuth2 Flow.