使用此端點傳送子帳戶邀請到電郵地址。
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
名稱 | 必填/選填 | 類型 | 說明 |
---|---|---|---|
emails | 必填 | array | 接收邀請的電郵地址的清單。 |
subaccount_type | 必填 | string |
要建立的子帳戶類型。 允許的值視您的帳戶設定而定。 請參閱詞彙 — 子帳戶類型取得可能的值。 |
invite_note | 選填 | string | 連同邀請傳出的自訂邀請訊息。 |