regis

<back to all web services

StudentGraduationSubmitRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/StudentGraduation/{uuid}/{year}/Submit
namespace regis.ClassLibrary.Requests

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type StudentGraduationProgramResponse() = 
        member val program_code:String = null with get,set
        member val concentration_code:String = null with get,set
        member val program_details:String = null with get,set
        member val comments:String = null with get,set

    [<AllowNullLiteral>]
    type StudentGraduationSubmitRequest() = 
        member val uuid:String = null with get,set
        member val authorizing_uuid:String = null with get,set
        member val year:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val first_name:String = null with get,set
        member val middle_name:String = null with get,set
        member val last_name:String = null with get,set
        member val phonetic_first_name:String = null with get,set
        member val phonetic_middle_name:String = null with get,set
        member val phonetic_last_name:String = null with get,set
        member val placement:String = null with get,set
        member val placement_other:String = null with get,set
        member val previous_degrees:String = null with get,set
        member val gown_size:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val project_title:String = null with get,set
        member val supervisor:String = null with get,set
        member val is_attending:Boolean = new Boolean() with get,set
        member val is_hood_requested:Boolean = new Boolean() with get,set
        member val is_hood_paid:Boolean = new Boolean() with get,set
        member val is_paid:Boolean = new Boolean() with get,set
        member val is_late:Boolean = new Boolean() with get,set
        member val comments:String = null with get,set
        member val current_status:String = null with get,set
        member val added_date:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val applied_programs:ResizeArray<StudentGraduationProgramResponse> = new ResizeArray<StudentGraduationProgramResponse>() with get,set

F# StudentGraduationSubmitRequest 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 /StudentGraduation/{uuid}/{year}/Submit HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	uuid: String,
	authorizing_uuid: String,
	year: 0,
	first_name: String,
	middle_name: String,
	last_name: String,
	phonetic_first_name: String,
	phonetic_middle_name: String,
	phonetic_last_name: String,
	placement: String,
	placement_other: String,
	previous_degrees: String,
	gown_size: 0,
	project_title: String,
	supervisor: String,
	is_attending: False,
	is_hood_requested: False,
	is_hood_paid: False,
	is_paid: False,
	is_late: False,
	comments: String,
	current_status: String,
	added_date: 0001-01-01,
	applied_programs: 
	[
		{
			program_code: String,
			concentration_code: String,
			program_details: String,
			comments: 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
	}
}