Verwenden Sie diesen Endpunkt, um einen Bericht herunterzuladen. Um den report-identifier
und den report-run-identifier
zu erhalten,, verwenden Sie den Endpunkt Berichtsverlauf.
Die Funktion „Berichtsbibliothek“ muss in Ihrem Konto aktiviert sein, damit dieser Endpunkt erfolgreich antworten kann.
curl -X GET \
'https://www.digicert.com/services/v2/report/{{report-identifier}}/{{report-run-identifier}}download?report_format={{report_format}}' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v1/report/{{report-identifier}}/{{report-run-identifier}}/download?report_format={{report_format}}"
payload={}
headers = {
'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}',
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v1/report/{{report-identifier}}/{{report-run-identifier}}/download?report_format={{report_format}}"
method := "GET"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://www.digicert.com/services/v1/report/{{report-identifier}}/{{report-run-identifier}}/download?report_format={{report_format}}',
'headers': {
'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}',
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
No content
{
"code": "report_format_inapplicable",
"message": "The given report format is not applicable for the template/report."
}
{
"code": "missing_mandatory_fields",
"message": "Please provide values for mandatory fields"
}
{
"code": "user_authentication_error",
"message": "User is not authenticated."
}
{
"code": "user_forbidden",
"message": "User does not have the required permission."
}
{
"code": "custom_reports_not_enabled",
"message": "Custom reports is not enabled"
}
{
"code": "reports_not_found",
"message": "Report with the given identifier does not exist."
}
{
"code": "report_not_found",
"message": "Report with the given identifier does not exist."
}
Name | Antr./Opt. | Typ | Beschreibung |
---|---|---|---|
report-identifier | erforderlich | uuid | Berichts-ID. Suchen Sie die Berichts-ID mit der Report History API. |
report-run-identifier | erforderlich | uuid | Die ID, die mit der Planung des Berichts verbunden ist. Suchen Sie den Report-run-identifier mit der Report History API. |
Name | Antr./Opt. | Typ | Beschreibung |
---|---|---|---|
report_format | erforderlich | string |
Format für heruntergeladenen Bericht. Unterstützte Formate: CSV, JSON, ZIP .
|
Die heruntergeladene Berichtsdatei wird als "<display_name>-<Datum des Herunterladens im Format JJJ-MM-TT> gespeichert.<file_format> Die Dateierweiterung basiert auf dem in der Create Report API angegebenen <code>report_format</code>.