POST api/PostAttendance

Request Information

URI Parameters

None.

Body Parameters

PostAttendance
NameDescriptionTypeAdditional information
GroupCode

integer

None.

ClassCode

integer

None.

date

date

None.

PStudents

string

None.

AStudents

string

None.

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "GroupCode": 1,
  "ClassCode": 2,
  "date": "2026-04-02T15:25:14.3171981+05:30",
  "PStudents": "sample string 4",
  "AStudents": "sample string 5",
  "UserId": 6
}

application/xml, text/xml

Sample:
<PostAttendance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <AStudents>sample string 5</AStudents>
  <ClassCode>2</ClassCode>
  <GroupCode>1</GroupCode>
  <PStudents>sample string 4</PStudents>
  <UserId>6</UserId>
  <date>2026-04-02T15:25:14.3171981+05:30</date>
</PostAttendance>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>