POST api/v2/mhs

Create a new record.

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StudentSequenceApiStatus
NameDescriptionTypeAdditional information
SQ

integer

None.

ID

integer

None.

SC

integer

None.

SN

integer

None.

Timestamp

date

None.

Status

string

None.

Error

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SQ": 1,
  "ID": 2,
  "SC": 3,
  "SN": 4,
  "Timestamp": "2024-06-29T00:45:18.6498136-07:00",
  "Status": "sample string 6",
  "Error": "sample string 7"
}

application/xml, text/xml

Sample:
<StudentSequenceApiStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMint.Aeries.DataV2">
  <Error>sample string 7</Error>
  <Status>sample string 6</Status>
  <Timestamp>2024-06-29T00:45:18.6498136-07:00</Timestamp>
  <ID>2</ID>
  <SC>3</SC>
  <SN>4</SN>
  <SQ>1</SQ>
</StudentSequenceApiStatus>