D-Client User Gide Send Mail Request
You can send dclient user guide send mail request to the email address that is registered to an account.
Request Interface
HTTP Request
POST /dclient/user-guide/mail-request/{dclientUuid}
Parameter
Request Parameter |
Value |
Required |
Description |
Default Value |
---|---|---|---|---|
dclientUuid |
string |
true |
ID to specify the D-Client.(32 alphanumeric character) |
- |
Response Interface
If the request is processed successfully, the response body is not returned.
Examples
public static void main(String[] args) { String host = "https://www.webconnect.hulft.com"; String apiKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; String dclientUuid = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; try { URL url = new URL(host + "/api/v2/dclient/user-guide/mail-request/" + dclientUuid); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); connection.setRequestProperty("Authorization", "Bearer " + apiKey); connection.setRequestProperty("Content-Type", "application/json"); System.out.println(connection.getResponseMessage()); // The response does not contain the response body. } catch (IOException ex) { // error } }
// load jquery var host = 'https://www.webconnect.hulft.com'; var apiKey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; var dclientUuid = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; $.ajax({ type: 'POST', url: host + '/api/v2/dclient/user-guide/mail-request/' + dclientUuid, headers: { Authorization: 'Bearer ' + apiKey } }).done(function(data, status, xhr) { console.log(data); }).fail(function(data, status, xhr) { console.log(data); });