Required role: | REGISUserRole |
POST | /Academic/Course/{secUUID}/Grade/Save |
---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GradeByCourseSaveResponse:
response_status: Optional[ResponseStatus] = None
sec_u_u_i_d: Optional[str] = None
messages: Optional[List[str]] = None
is_successful: bool = False
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GradeStudentAcademicCredentialRequest:
stac_u_u_i_d: Optional[str] = None
grade: Optional[str] = None
is_grade_final: bool = False
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GradeByCourseSaveRequest:
sec_u_u_i_d: Optional[str] = None
override_grading_end_date: Optional[datetime.datetime] = None
crosslists_included: bool = False
student_academic_credentials: Optional[List[GradeStudentAcademicCredentialRequest]] = None
authorizing_uuid: Optional[str] = None
Python GradeByCourseSaveRequest DTOs
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 /Academic/Course/{secUUID}/Grade/Save HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
secUUID: String,
override_grading_end_date: 0001-01-01,
crosslists_included: False,
studentAcademicCredentials:
[
{
stacUUID: String,
grade: String,
is_grade_final: False
}
],
authorizing_uuid: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, secUUID: String, messages: [ String ], is_successful: False }