Use este terminal para eliminar un informe específico.
La función Biblioteca de informes debe estar habilitada en su cuenta para que este terminal responda correctamente.
curl -X DELETE \
'https://www.digicert.com/services/v2/report/preview/report/{{report_identifier}}/{{report-run-identifier}}' \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = ""
payload="curl -X DELETE \\\r\n 'https://www.digicert.com/services/v2/report/preview/report/{{report_identifier}}/{{report-run-identifier}}' \\\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 DELETE \`+"
"+`
'https://www.digicert.com/services/v2/report/preview/report/{{report_identifier}}/{{report-run-identifier}}' \`+"
"+`
-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 DELETE \\\r\n \'https://www.digicert.com/services/v2/report/preview/report/{{report_identifier}}/{{report-run-identifier}}\' \\\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);
});
{
"message": "Successfully marked report for deletion"
}
Nombre | Solicitud/opción | Tipo | Descripción |
---|---|---|---|
report-identifier | obligatorio | string | Id. de informe mostrada en la respuesta de la API crear informe. |
report-run-identifier | obligatorio | string | La Id. asociada con la programación del informe. Encuentre el identificador de ejecución del informe con la API Historial de informes. |