Verwenden Sie diesen Endpunkt, um alle untergeordneten Container eines Containers aufzulisten.
Nur die unmittelbar untergeordneten Container werden zurückgegeben.
curl -X GET \
https://www.digicert.com/services/v2/container/{{container_id}}/children \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/container/{{container_id}}/children"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/container/{{container_id}}/children"
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/container/{{container_id}}/children',
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);
});
{
"containers": [
{
"id": 4,
"public_id": "<public_id>",
"name": "Math Department",
"description": "Includes Precalculus, Calculus, Trigonometry",
"parent_id": 3,
"template_id": 6,
"has_logo": true,
"is_active": true,
"allowed_domain_names": [
"test1.com",
"test2.com"
]
},
{
"id": 5,
"public_id": "<public_id>",
"name": "Science Department",
"description": "Includes Biology, Chemistry, Geology",
"parent_id": 3,
"template_id": 6,
"has_logo": true,
"is_active": true,
"allowed_domain_names": [
"test1.com",
"test2.com"
]
}
]
}
Name | Typ | Beschreibung |
---|---|---|
containers | array | Liste aller untergeordneten Containern. |
.. id | int | Container-ID |
.. public_id | string | Die öffentliche ID des Containers |
.. name | string | Name des Containers |
.. description | string | Beschreibung für den Container |
.. parent_id | id | ID des übergeordneten Containers |
.. template_id | id | Vorlagen-ID des Containers |
.. has_logo | bool | Status des benutzerdefinierten Logos des Containers |
.. is_active | bool | Aktiver Status des Containers |
.. allowed_domain_names | array | Liste der Domänen, die mit dem Container verwendet werden können |