regis

<back to all web services

AdmissionsSummaryRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/admissions/{uuid}/summary
import 'package:servicestack/servicestack.dart';

class AdmissionsSummaryResponse implements IConvertible
{
    ResponseStatus? responseStatus;
    String? uuid;
    int? regent_id;
    String? start_term;
    String? program;
    String? application_status;
    double? undergrad_gpa;

    AdmissionsSummaryResponse({this.responseStatus,this.uuid,this.regent_id,this.start_term,this.program,this.application_status,this.undergrad_gpa});
    AdmissionsSummaryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        uuid = json['uuid'];
        regent_id = json['regent_id'];
        start_term = json['start_term'];
        program = json['program'];
        application_status = json['application_status'];
        undergrad_gpa = JsonConverters.toDouble(json['undergrad_gpa']);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!),
        'uuid': uuid,
        'regent_id': regent_id,
        'start_term': start_term,
        'program': program,
        'application_status': application_status,
        'undergrad_gpa': undergrad_gpa
    };

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

class AdmissionsSummaryRequest implements IConvertible
{
    String? uuid;

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

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

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

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

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

Dart AdmissionsSummaryRequest DTOs

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

HTTP + CSV

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

POST /admissions/{uuid}/summary HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"uuid":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"uuid":"String","regent_id":0,"start_term":"String","program":"String","application_status":"String","undergrad_gpa":0}