regis

<back to all web services

PersonVerySimpleRequest

Requires Authentication
Required permission:ReadStudentStatus
The following routes are available for this service:
POST/person/regent_login/{regent_login}
import 'package:servicestack/servicestack.dart';

class PersonVerySimpleResponse implements IConvertible
{
    ResponseStatus? responseStatus;
    String? first_name;
    String? last_name;
    String? preferred_name;
    String? email;

    PersonVerySimpleResponse({this.responseStatus,this.first_name,this.last_name,this.preferred_name,this.email});
    PersonVerySimpleResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        first_name = json['first_name'];
        last_name = json['last_name'];
        preferred_name = json['preferred_name'];
        email = json['email'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
        'first_name': first_name,
        'last_name': last_name,
        'preferred_name': preferred_name,
        'email': email
    };

    getTypeName() => "PersonVerySimpleResponse";
    TypeContext? context = _ctx;
}

class PersonVerySimpleRequest implements IConvertible
{
    String? regent_login;

    PersonVerySimpleRequest({this.regent_login});
    PersonVerySimpleRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        regent_login = json['regent_login'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'regent_login': regent_login
    };

    getTypeName() => "PersonVerySimpleRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'PersonVerySimpleResponse': TypeInfo(TypeOf.Class, create:() => PersonVerySimpleResponse()),
    'PersonVerySimpleRequest': TypeInfo(TypeOf.Class, create:() => PersonVerySimpleRequest()),
});

Dart PersonVerySimpleRequest 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 /person/regent_login/{regent_login} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	regent_login: 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
		}
	},
	first_name: String,
	last_name: String,
	preferred_name: String,
	email: String
}