regis

<back to all web services

DropSubmitRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Registration/Drop/{uuid}/Term/{reporting_term}/Submit
import 'package:servicestack/servicestack.dart';

class DropSubmitRequest implements IConvertible
{
    String? transaction_uuid;
    String? uuid;
    String? reporting_term;
    List<String>? student_section_uuids_to_drop;
    List<int>? rates_opted_in;
    String? authorizing_uuid;

    DropSubmitRequest({this.transaction_uuid,this.uuid,this.reporting_term,this.student_section_uuids_to_drop,this.rates_opted_in,this.authorizing_uuid});
    DropSubmitRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        transaction_uuid = json['transaction_uuid'];
        uuid = json['uuid'];
        reporting_term = json['reporting_term'];
        student_section_uuids_to_drop = JsonConverters.fromJson(json['student_section_uuids_to_drop'],'List<String>',context!);
        rates_opted_in = JsonConverters.fromJson(json['rates_opted_in'],'List<int>',context!);
        authorizing_uuid = json['authorizing_uuid'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'transaction_uuid': transaction_uuid,
        'uuid': uuid,
        'reporting_term': reporting_term,
        'student_section_uuids_to_drop': JsonConverters.toJson(student_section_uuids_to_drop,'List<String>',context!),
        'rates_opted_in': JsonConverters.toJson(rates_opted_in,'List<int>',context!),
        'authorizing_uuid': authorizing_uuid
    };

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

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

Dart DropSubmitRequest 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 /Registration/Drop/{uuid}/Term/{reporting_term}/Submit HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	transaction_uuid: String,
	uuid: String,
	reporting_term: String,
	student_section_uuids_to_drop: 
	[
		String
	],
	rates_opted_in: 
	[
		0
	],
	authorizing_uuid: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	errorCode: String,
	message: String,
	stackTrace: String,
	errors: 
	[
		{
			errorCode: String,
			fieldName: String,
			message: String,
			meta: 
			{
				String: String
			}
		}
	],
	meta: 
	{
		String: String
	}
}