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

com.ringcentral.paths.restapi.account.userrole.default1.Index Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.paths.restapi.account.userrole.default1;

import com.ringcentral.*;
import com.ringcentral.definitions.*;

public class Index {
    public RestClient rc;
    public com.ringcentral.paths.restapi.account.userrole.Index parent;

    public Index(com.ringcentral.paths.restapi.account.userrole.Index parent) {
        this.parent = parent;
        this.rc = parent.rc;
    }

    public String path() {
        return parent.path() + "/default";
    }

    public String path(Boolean withParameter) {
        return path();
    }

    /**
     * Returns the default user role of the current account.
     * HTTP Method: get
     * Endpoint: /restapi/{apiVersion}/account/{accountId}/user-role/default
     * Rate Limit Group: Light
     * App Permission: RoleManagement
     * User Permission: Roles
     */
    public String get() throws com.ringcentral.RestException, java.io.IOException {
        okhttp3.ResponseBody rb = this.rc.get(this.path(), null);
        return rb.string();
    }

    /**
     * Updates the account default user role.
     * HTTP Method: put
     * Endpoint: /restapi/{apiVersion}/account/{accountId}/user-role/default
     * Rate Limit Group: Medium
     * App Permission: RoleManagement
     * User Permission: Roles
     */
    public String put(DefaultUserRoleRequest defaultUserRoleRequest) throws com.ringcentral.RestException, java.io.IOException {
        okhttp3.ResponseBody rb = this.rc.put(this.path(), defaultUserRoleRequest, null);
        return rb.string();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy