regis

<back to all web services

CRMEducationUpsertRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/DynamicsCRM/Education/Upsert/{regent_id}
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class CRMEducationUpsertRequest implements IConvertible
{
    int? regent_id;
    int? import_id;
    int? institution_regent_id;
    String? application_guid;
    String? degree_status;
    String? degree_type;
    String? unofficial_institution_name;
    String? unofficial_degree_name;
    String? degree_name;
    String? degree_code;
    String? description;
    String? major;
    String? second_major;
    double? cumulative_gpa;
    bool? is_final;
    bool? is_regis_external_degree;
    int? start_year;
    int? end_year;
    int? month_graduated;
    int? year_graduated;
    DateTime? added_date;

    CRMEducationUpsertRequest({this.regent_id,this.import_id,this.institution_regent_id,this.application_guid,this.degree_status,this.degree_type,this.unofficial_institution_name,this.unofficial_degree_name,this.degree_name,this.degree_code,this.description,this.major,this.second_major,this.cumulative_gpa,this.is_final,this.is_regis_external_degree,this.start_year,this.end_year,this.month_graduated,this.year_graduated,this.added_date});
    CRMEducationUpsertRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        regent_id = json['regent_id'];
        import_id = json['import_id'];
        institution_regent_id = json['institution_regent_id'];
        application_guid = json['application_guid'];
        degree_status = json['degree_status'];
        degree_type = json['degree_type'];
        unofficial_institution_name = json['unofficial_institution_name'];
        unofficial_degree_name = json['unofficial_degree_name'];
        degree_name = json['degree_name'];
        degree_code = json['degree_code'];
        description = json['description'];
        major = json['major'];
        second_major = json['second_major'];
        cumulative_gpa = JsonConverters.toDouble(json['cumulative_gpa']);
        is_final = json['is_final'];
        is_regis_external_degree = json['is_regis_external_degree'];
        start_year = json['start_year'];
        end_year = json['end_year'];
        month_graduated = json['month_graduated'];
        year_graduated = json['year_graduated'];
        added_date = JsonConverters.fromJson(json['added_date'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'regent_id': regent_id,
        'import_id': import_id,
        'institution_regent_id': institution_regent_id,
        'application_guid': application_guid,
        'degree_status': degree_status,
        'degree_type': degree_type,
        'unofficial_institution_name': unofficial_institution_name,
        'unofficial_degree_name': unofficial_degree_name,
        'degree_name': degree_name,
        'degree_code': degree_code,
        'description': description,
        'major': major,
        'second_major': second_major,
        'cumulative_gpa': cumulative_gpa,
        'is_final': is_final,
        'is_regis_external_degree': is_regis_external_degree,
        'start_year': start_year,
        'end_year': end_year,
        'month_graduated': month_graduated,
        'year_graduated': year_graduated,
        'added_date': JsonConverters.toJson(added_date,'DateTime',context!)
    };

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

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

Dart CRMEducationUpsertRequest 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 /DynamicsCRM/Education/Upsert/{regent_id} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	regent_id: 0,
	import_id: 0,
	institution_regent_id: 0,
	application_guid: String,
	degree_status: String,
	degree_type: String,
	unofficial_institution_name: String,
	unofficial_degree_name: String,
	degree_name: String,
	degree_code: String,
	description: String,
	major: String,
	second_major: String,
	cumulative_gpa: 0,
	is_final: False,
	is_regis_external_degree: False,
	start_year: 0,
	end_year: 0,
	month_graduated: 0,
	year_graduated: 0,
	added_date: 0001-01-01
}
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
	}
}