| Required role: | REGISUserRole | 
| POST | /StudentAcademicCredential/{uuid}/Create | 
|---|
| Name | Parameter | Data Type | Required | Description | 
|---|---|---|---|---|
| uuid | path | string | No | |
| section_id | body | int? | No | |
| course_name | body | string | No | |
| section_code | body | string | No | |
| subject | body | string | No | |
| course_level | body | int? | No | |
| title | body | string | No | |
| location | body | string | No | |
| is_audio | body | bool | No | |
| is_oncampus | body | bool | No | |
| credit_value | body | decimal? | No | |
| audit_value | body | decimal? | No | |
| is_audit | body | bool | No | |
| is_pass_fail | body | bool | No | |
| grade | body | string | No | |
| is_grade_final | body | bool | No | |
| gpa_credits | body | decimal? | No | |
| grade_points | body | decimal? | No | |
| academic_level | body | string | No | |
| printed_comments | body | string | No | |
| term | body | string | No | |
| reporting_term | body | string | No | |
| reporting_year | body | int? | No | |
| current_status | body | string | No | |
| authorizing_uuid | body | string | No | 
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /StudentAcademicCredential/{uuid}/Create HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
	uuid: String,
	section_id: 0,
	course_name: String,
	section_code: String,
	subject: String,
	course_level: 0,
	title: String,
	location: String,
	is_audio: False,
	is_oncampus: False,
	credit_value: 0,
	audit_value: 0,
	is_audit: False,
	is_pass_fail: False,
	grade: String,
	is_grade_final: False,
	gpa_credits: 0,
	grade_points: 0,
	academic_level: String,
	printed_comments: String,
	term: String,
	reporting_term: String,
	reporting_year: 0,
	current_status: String,
	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
	}
}