GET api/v2/mhs/{schoolCode}/{studentNumber}

Get information using School Code and Student Number.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
schoolCode

integer

Required

studentNumber

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MhsTable
NameDescriptionTypeAdditional information
SC

integer

None.

SN

integer

None.

ID

integer

None.

CD

string

None.

DT

date

None.

GR

integer

None.

AG

integer

None.

SD

date

None.

ED

date

None.

TG

string

None.

CO

string

None.

SQ

integer

None.

SCL

integer

None.

PC

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SC": 1,
    "SN": 2,
    "ID": 3,
    "CD": "sample string 4",
    "DT": "2024-06-29T00:39:04.9032732-07:00",
    "GR": 5,
    "AG": 6,
    "SD": "2024-06-29T00:39:04.9032732-07:00",
    "ED": "2024-06-29T00:39:04.9032732-07:00",
    "TG": "sample string 7",
    "CO": "sample string 8",
    "SQ": 9,
    "SCL": 10,
    "PC": "sample string 11"
  },
  {
    "SC": 1,
    "SN": 2,
    "ID": 3,
    "CD": "sample string 4",
    "DT": "2024-06-29T00:39:04.9032732-07:00",
    "GR": 5,
    "AG": 6,
    "SD": "2024-06-29T00:39:04.9032732-07:00",
    "ED": "2024-06-29T00:39:04.9032732-07:00",
    "TG": "sample string 7",
    "CO": "sample string 8",
    "SQ": 9,
    "SCL": 10,
    "PC": "sample string 11"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMhsTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMint.Aeries.DataV2">
  <MhsTable>
    <AG>6</AG>
    <CD>sample string 4</CD>
    <CO>sample string 8</CO>
    <DT>2024-06-29T00:39:04.9032732-07:00</DT>
    <ED>2024-06-29T00:39:04.9032732-07:00</ED>
    <GR>5</GR>
    <ID>3</ID>
    <PC>sample string 11</PC>
    <SC>1</SC>
    <SCL>10</SCL>
    <SD>2024-06-29T00:39:04.9032732-07:00</SD>
    <SN>2</SN>
    <SQ>9</SQ>
    <TG>sample string 7</TG>
  </MhsTable>
  <MhsTable>
    <AG>6</AG>
    <CD>sample string 4</CD>
    <CO>sample string 8</CO>
    <DT>2024-06-29T00:39:04.9032732-07:00</DT>
    <ED>2024-06-29T00:39:04.9032732-07:00</ED>
    <GR>5</GR>
    <ID>3</ID>
    <PC>sample string 11</PC>
    <SC>1</SC>
    <SCL>10</SCL>
    <SD>2024-06-29T00:39:04.9032732-07:00</SD>
    <SN>2</SN>
    <SQ>9</SQ>
    <TG>sample string 7</TG>
  </MhsTable>
</ArrayOfMhsTable>