CA Provider List

Overview

Use the CA Provider List API to get the list of the certificate authority (CA) providers configured on the BIG-IQ, such as Venafi and Let’s Encrypt.

REST Endpoint: /mgmt/cm/adc-core/external-ca/provider-list

Requests

GET /mgmt/cm/adc-core/external-ca/provider-list

To retrieve the list of the certificate authority (CA) providers configured on the BIG-IQ, send a GET request to the /mgmt/cm/adc-core/external-ca/provider-list endpoint.

Request Parameters

None

Query Parameters

None

Response

HTTP/1.1 200 OK

Name Type Required
providerList object The list of CA providers configured on this BIG-IQ. Possible values: “Let’s Encrypt” and “Venafi”.
selfLink string URL of the list of CA providers

Permissions

Role Allow
admin Yes
Certificate Editor/Viewer Yes

Examples

GET to retrieve the list of CA providers

Send a GET request to the collection to get the list of CA providers.

GET https://<BIG-IQ>/mgmt/cm/adc-core/external-ca/provider-list

Response

The JSON in the GET’s response can look similar to the following example.

{
    "providerList": [
            "Let's Encrypt",
            "Venafi"
    ],
    "generation": 0,
    "lastUpdateMicros": 0,
    "kind": "cm:adc-core:external-ca:provider-list:externalcaproviderliststate",
    "selfLink": "https://localhost/mgmt/cm/adc-core/external-ca/provider-list"
}