GET api/DisplaySheet

Request Information

URI Parameters

None.

Body Parameters

DisplaySheet
NameDescriptionTypeAdditional information
ShCode

integer

None.

StudentCode

integer

None.

Rn

integer

None.

RegistrationNumber

string

None.

NameOfStudent

string

None.

FatherName

string

None.

Status

string

None.

Remarks

string

None.

Status1

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ShCode": 1,
  "StudentCode": 2,
  "Rn": 3,
  "RegistrationNumber": "sample string 4",
  "NameOfStudent": "sample string 5",
  "FatherName": "sample string 6",
  "Status": "sample string 7",
  "Remarks": "sample string 8",
  "Status1": "sample string 9"
}

application/xml, text/xml

Sample:
<DisplaySheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <FatherName>sample string 6</FatherName>
  <NameOfStudent>sample string 5</NameOfStudent>
  <RegistrationNumber>sample string 4</RegistrationNumber>
  <Remarks>sample string 8</Remarks>
  <Rn>3</Rn>
  <ShCode>1</ShCode>
  <Status>sample string 7</Status>
  <Status1>sample string 9</Status1>
  <StudentCode>2</StudentCode>
</DisplaySheet>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of DisplaySheet
NameDescriptionTypeAdditional information
ShCode

integer

None.

StudentCode

integer

None.

Rn

integer

None.

RegistrationNumber

string

None.

NameOfStudent

string

None.

FatherName

string

None.

Status

string

None.

Remarks

string

None.

Status1

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShCode": 1,
    "StudentCode": 2,
    "Rn": 3,
    "RegistrationNumber": "sample string 4",
    "NameOfStudent": "sample string 5",
    "FatherName": "sample string 6",
    "Status": "sample string 7",
    "Remarks": "sample string 8",
    "Status1": "sample string 9"
  },
  {
    "ShCode": 1,
    "StudentCode": 2,
    "Rn": 3,
    "RegistrationNumber": "sample string 4",
    "NameOfStudent": "sample string 5",
    "FatherName": "sample string 6",
    "Status": "sample string 7",
    "Remarks": "sample string 8",
    "Status1": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDisplaySheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <DisplaySheet>
    <FatherName>sample string 6</FatherName>
    <NameOfStudent>sample string 5</NameOfStudent>
    <RegistrationNumber>sample string 4</RegistrationNumber>
    <Remarks>sample string 8</Remarks>
    <Rn>3</Rn>
    <ShCode>1</ShCode>
    <Status>sample string 7</Status>
    <Status1>sample string 9</Status1>
    <StudentCode>2</StudentCode>
  </DisplaySheet>
  <DisplaySheet>
    <FatherName>sample string 6</FatherName>
    <NameOfStudent>sample string 5</NameOfStudent>
    <RegistrationNumber>sample string 4</RegistrationNumber>
    <Remarks>sample string 8</Remarks>
    <Rn>3</Rn>
    <ShCode>1</ShCode>
    <Status>sample string 7</Status>
    <Status1>sample string 9</Status1>
    <StudentCode>2</StudentCode>
  </DisplaySheet>
</ArrayOfDisplaySheet>