Usa questo endpoint per inviare un invito subaccount ad un indirizzo e-mail.
curl -X POST \
https://www.digicert.com/services/v2/account/subaccount/invite \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}' \
-d '{
"emails": ["email@dev.com"],
"subaccount_type": "reseller",
"invite_note": "Sign up for your CertCentral account!"
}'
import requests
url = "https://www.digicert.com/services/v2/account/subaccount/invite"
payload = "{\n \"emails\": [\"email@dev.com\"],\n \"subaccount_type\": \"reseller\",\n \"invite_note\": \"Sign up for your CertCentral account!\"\n}"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/account/subaccount/invite"
payload := strings.NewReader("{\n \"emails\": [\"email@dev.com\"],\n \"subaccount_type\": \"reseller\",\n \"invite_note\": \"Sign up for your CertCentral account!\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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: 'POST',
url: 'https://www.digicert.com/services/v2/account/subaccount/invite',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' },
body:
{ emails: [ 'email@dev.com' ],
subaccount_type: 'reseller',
invite_note: 'Sign up for your CertCentral account!' },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
// empty
Nome | Rich/Opz | Tipo | Descrizione |
---|---|---|---|
emails | obbligatorio | array | Elenco degli indirizzi e-mail che riceveranno l’invito. |
subaccount_type | obbligatorio | string |
Tipo di subaccount da creare. I valori consentiti dipendono dalle impostazioni del tuo account. Consulta Glossario — Tipi di subaccount per i valori possibili. |
invite_note | facoltativo | string | Messaggio di invito personalizzato da inviare con l’invito. |