Use this endpoint to get the details about a allowlisted certificate authority brand.
curl -X GET \
'https://www.digicert.com/services/v2/ctmonitor/issuer-brand-settings?filters[issuer_brand]=&sort=issuer_brand&offset=0&limit=25' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/ctmonitor/issuer-brand-settings?offset=0&limit=1000"
payload = ""
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/ctmonitor/issuer-brand-settings?filters[issuer_brand]=&sort=issuer_brand&offset=0&limit=25"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
var request = require("request");
var options = { method: 'GET',
url: 'https://www.digicert.com/services/v2/ctmonitor/issuer-brand-settings?filters[issuer_brand]=&sort=issuer_brand&offset=0&limit=25',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
{
"ct_issuer_brand_settings": [
{
"issuer_brand": "Let's Encrypt",
"certificates_count": 48,
"disable_email_notification_flag": false,
"trusted_ica_flag": false
},
{
"issuer_brand": "Sectigo",
"certificates_count": 7,
"disable_email_notification_flag": false,
"trusted_ica_flag": false
},
{
"issuer_brand": "DigiCert",
"certificates_count": 1,
"disable_email_notification_flag": false
}
],
"page": {
"total": 3,
"limit": 25,
"offset": 0
}
}
This endpoint supports filters, sorting, and pagination. For general information and examples of the syntax to use when applying filters and sorting results, see Services API - Filters, sorting, and pagination parameters.
Example:
https://www.digicert.com/services/v2/ctmonitor/issuer-brand-settings?filters[issuer_brand]=&sort=issuer_brand&offset=0&limit=25
Name | Req/Opt | Type | Description |
---|---|---|---|
filters[{{property_name}} ]
|
optional | string |
Filters results by the specified property. Replace {{property_name}} in your request with the property to use for filtering. This endpoint supports filtering by the following properties:
|
sort | optional | string |
Sorts results by the value of one or more properties. By default, sorts results in ascending alphabetical order (0-9, A-Z). To sort in descending alphabetical order (9-0, Z-A), prefix the property name with a minus ( - ).To sort by multiple properties, separate the name of each property with a comma. Sort hierarchy matches the order of properties in this list. This endpoint supports sorting by the following properties:
|
offset | required | int |
Index of the first result to include in the response. Default: 0
|
limit | required | int |
Total number of results to include in the response. Max: 1000 (default)
|
Name | Type | Description |
---|---|---|
ct_issuer_brand_settings | array | Details about the allowlisted issuing certificate authority brand |
.. issuer_brand | string | Name of certificate authority brand. |
.. certificates_count | string | Total number of certificates for certificate authority brand. |
.. disable_email_notification_flag | bool |
If urgent email notifications for a certificate authority are enabled. Possible values:
|
.. trusted_ica_flag | bool |
If the certificate authority brand is allowlisted. Possible values:
|
page | object | Details about results. Modified using URL query strings. |
.. total | int | Total number of records. |
.. limit | int | Pagination record limit. |
.. offset | int | Pagination starting point. |