POST api/v2/mhs
Create a new record.
Request Information
URI Parameters
None.
Body Parameters
MhsTable| Name | Description | Type | Additional 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": "2026-02-03T18:27:44.987641-08:00",
"GR": 5,
"AG": 6,
"SD": "2026-02-03T18:27:44.987641-08:00",
"ED": "2026-02-03T18:27:44.987641-08: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>2026-02-03T18:27:44.987641-08:00</DT> <ED>2026-02-03T18:27:44.987641-08:00</ED> <GR>5</GR> <ID>3</ID> <PC>sample string 11</PC> <SC>1</SC> <SCL>10</SCL> <SD>2026-02-03T18:27:44.987641-08: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| Name | Description | Type | Additional 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": "2026-02-03T18:27:44.987641-08: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>2026-02-03T18:27:44.987641-08:00</Timestamp> <ID>2</ID> <SC>3</SC> <SN>4</SN> <SQ>1</SQ> </StudentSequenceApiStatus>