POST api/SaveStudentAttendance

Request Information

URI Parameters

None.

Body Parameters

StudentAttendanceCreateModel
NameDescriptionTypeAdditional information
StudentId

integer

None.

AttendanceTypeCode

string

None.

Date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "StudentId": 1,
  "AttendanceTypeCode": "sample string 2",
  "Date": "2025-08-09T01:16:56.4794519+00:00"
}

application/xml, text/xml

Sample:
<StudentAttendanceCreateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Objects.StudentObjects.CreateModel">
  <AttendanceTypeCode>sample string 2</AttendanceTypeCode>
  <Date>2025-08-09T01:16:56.4794519+00:00</Date>
  <StudentId>1</StudentId>
</StudentAttendanceCreateModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Request
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Exception

Exception

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Exception": {
    "ClassName": "System.Exception",
    "Message": null,
    "Data": null,
    "InnerException": null,
    "HelpURL": "sample string 1",
    "StackTraceString": null,
    "RemoteStackTraceString": null,
    "RemoteStackIndex": 0,
    "ExceptionMethod": null,
    "HResult": 3,
    "Source": "sample string 2",
    "WatsonBuckets": null
  }
}

application/xml, text/xml

Sample:
<Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Objects">
  <Exception xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <ClassName xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:string" xmlns="">System.Exception</ClassName>
    <Message i:nil="true" xmlns="" />
    <Data i:nil="true" xmlns="" />
    <InnerException i:nil="true" xmlns="" />
    <HelpURL xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:string" xmlns="">sample string 1</HelpURL>
    <StackTraceString i:nil="true" xmlns="" />
    <RemoteStackTraceString i:nil="true" xmlns="" />
    <RemoteStackIndex xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:int" xmlns="">0</RemoteStackIndex>
    <ExceptionMethod i:nil="true" xmlns="" />
    <HResult xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:int" xmlns="">3</HResult>
    <Source xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:string" xmlns="">sample string 2</Source>
    <WatsonBuckets i:nil="true" xmlns="" />
  </Exception>
  <Message>sample string 2</Message>
  <Success>true</Success>
</Request>