All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.voximplant.apiexamples.RemoveKeyRolesExample Maven / Gradle / Ivy

Go to download

Voximplant Java API client library. Voximplant is a cloud communications platform for business and developers

There is a newer version: 1.11.0
Show newest version
package com.voximplant.apiexamples;

import com.voximplant.apiclient.ClientException;
import com.voximplant.apiclient.request.RemoveKeyRolesRequest;
import com.voximplant.apiclient.response.RemoveKeyRolesResponse;
import com.voximplant.apiclient.VoximplantAPIClient;
import com.voximplant.apiclient.util.MultiArgument;
import java.util.Date;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Calendar;
import java.util.TimeZone;
import java.io.IOException;

/**
* Remove the roles 1, 2, 3 from the key.
*/
public class RemoveKeyRolesExample {
    public static void main(String [] args) {
        try {
            VoximplantAPIClient client = new VoximplantAPIClient("/path/to/credentials.json");


            RemoveKeyRolesResponse res = client.removeKeyRoles(new RemoveKeyRolesRequest()
                .setKeyId("ab81c90e-543e-4446-9af9-105269dfafca")
                .setRoleId(MultiArgument.forSingleValue(1L))
            );
            System.out.println("OK");
        } catch (IOException | ClientException e) {
            e.printStackTrace();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy