Required role: | REGISUserRole |
POST | /UserRoles/{uuid} |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class UserRoleRequest
{
public String authorizing_uuid = null;
public String uuid = null;
public String getAuthorizingUuid() { return authorizing_uuid; }
public UserRoleRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
public String getUuid() { return uuid; }
public UserRoleRequest setUuid(String value) { this.uuid = 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; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /UserRoles/{uuid} HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
authorizing_uuid: String,
uuid: String
}
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 ] }