Usa questo endpoint per elencare le autorizzazioni per l’utente autenticato.
curl -X GET \
https://www.digicert.com/services/v2/authorization \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/authorization"
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/authorization"
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/authorization',
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);
});
{
"authorizations": [
{
"authorized": true,
"permission": "create_containers"
},
{
"authorized": true,
"permission": "view_container"
},
{
"authorized": true,
"permission": "edit_container"
},
{
"authorized": true,
"permission": "manage_guest_keys"
},
{
"authorized": true,
"permission": "create_users"
},
{
"authorized": true,
"permission": "edit_users"
},
{
"authorized": true,
"permission": "view_users"
},
{
"authorized": true,
"permission": "add_domains"
},
{
"authorized": true,
"permission": "view_domains"
},
{
"authorized": true,
"permission": "create_organizations"
},
...
]
}
Nome | Tipo | Descrizione |
---|---|---|
authorizations | array | Elenco delle autorizzazioni. |
.. authorized | bool | Specifica se l’utente è autorizzato ad eseguire l’azione. |
.. permission | string |
Azione di autorizzazione. Consulta Glossario — Autorizzazioni |