이 엔드포인트를 사용하여 모든 사용 가능한 보고서의 이름을 나열합니다.
이 엔드포인트가 응답하려면 계정에 보고서 라이브러리 기능을 사용해야 합니다.
curl -X GET \
'https://www.digicert.com/services/v2/report/preview/report/names' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = ""
payload="curl -X GET \\\r\n 'https://www.digicert.com/services/v2/report/preview/report/names' \\\r\n -H 'Content-Type: application/json' \\\r\n -H 'X-DC-DEVKEY: B35MZV2NEYT6KJM4WRXAL3TTKKFGGY6SXZOLSPZPLGYACGYQJFYNHRNHCKVT6PZULBLC4ECGGRV22KHEQ'"
headers = {
'Content-Type': 'text/plain'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := ""
method := "GET"
payload := strings.NewReader(`curl -X GET \`+"
"+`
'https://www.digicert.com/services/v2/report/preview/report/names' \`+"
"+`
-H 'Content-Type: application/json' \`+"
"+`
-H 'X-DC-DEVKEY: B35MZV2NEYT6KJM4WRXAL3TTKKFGGY6SXZOLSPZPLGYACGYQJFYNHRNHCKVT6PZULBLC4ECGGRV22KHEQ'`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "text/plain")
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': '',
'headers': {
'Content-Type': 'text/plain'
},
body: 'curl -X GET \\\r\n \'https://www.digicert.com/services/v2/report/preview/report/names\' \\\r\n -H \'Content-Type: application/json\' \\\r\n -H \'X-DC-DEVKEY: B35MZV2NEYT6KJM4WRXAL3TTKKFGGY6SXZOLSPZPLGYACGYQJFYNHRNHCKVT6PZULBLC4ECGGRV22KHEQ\''
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
{
"report_names": [
"Report_ondemand",
“Report_monthly",
“Report_weekly"
]
}
이름 | 필수/옵션 | 유형 | 설명 |
---|---|---|---|
report_display_name | 옵션 | string | 보고서에 지정한 표시 이름입니다. |
이름 | 유형 | 설명 |
---|---|---|
report_names | object | 만든 보고서의 표시 이름의 목록입니다. |