regis

<back to all web services

UserRoleUpdateRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/UserRoles/{uuid}/Update
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class UserRoleUpdateRequest
    {
        public String uuid = null;
        public String authorizing_uuid = null;
        public String admin_auth_secret = null;
        public Boolean is_staff = null;
        public ArrayList<Integer> role_ids = null;
        
        public String getUuid() { return uuid; }
        public UserRoleUpdateRequest setUuid(String value) { this.uuid = value; return this; }
        public String getAuthorizingUuid() { return authorizing_uuid; }
        public UserRoleUpdateRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
        public String getAdminAuthSecret() { return admin_auth_secret; }
        public UserRoleUpdateRequest setAdminAuthSecret(String value) { this.admin_auth_secret = value; return this; }
        public Boolean getIsStaff() { return is_staff; }
        public UserRoleUpdateRequest setIsStaff(Boolean value) { this.is_staff = value; return this; }
        public ArrayList<Integer> getRoleIds() { return role_ids; }
        public UserRoleUpdateRequest setRoleIds(ArrayList<Integer> value) { this.role_ids = value; return this; }
    }

    public static class UserRoleResponse
    {
        public ResponseStatus responseStatus = null;
        public Integer regent_id = null;
        public String uuid = null;
        public String regent_login = null;
        public String first_name = null;
        public String last_name = null;
        public String email = null;
        public Boolean is_staff = null;
        public ArrayList<String> roles = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public UserRoleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public Integer getRegentId() { return regent_id; }
        public UserRoleResponse setRegentId(Integer value) { this.regent_id = value; return this; }
        public String getUuid() { return uuid; }
        public UserRoleResponse setUuid(String value) { this.uuid = value; return this; }
        public String getRegentLogin() { return regent_login; }
        public UserRoleResponse setRegentLogin(String value) { this.regent_login = value; return this; }
        public String getFirstName() { return first_name; }
        public UserRoleResponse setFirstName(String value) { this.first_name = value; return this; }
        public String getLastName() { return last_name; }
        public UserRoleResponse setLastName(String value) { this.last_name = value; return this; }
        public String getEmail() { return email; }
        public UserRoleResponse setEmail(String value) { this.email = value; return this; }
        public Boolean getIsStaff() { return is_staff; }
        public UserRoleResponse setIsStaff(Boolean value) { this.is_staff = value; return this; }
        public ArrayList<String> getRoles() { return roles; }
        public UserRoleResponse setRoles(ArrayList<String> value) { this.roles = value; return this; }
    }

}

Java UserRoleUpdateRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /UserRoles/{uuid}/Update HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	uuid: String,
	authorizing_uuid: String,
	admin_auth_secret: String,
	is_staff: False,
	role_ids: 
	[
		0
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	},
	regent_id: 0,
	uuid: String,
	regent_login: String,
	first_name: String,
	last_name: String,
	email: String,
	is_staff: False,
	roles: 
	[
		String
	]
}