POST api/v2/mlm
Create a new record.
Request Information
URI Parameters
None.
Body Parameters
MlmTable| Name | Description | Type | Additional information |
|---|---|---|---|
| SC | integer |
None. |
|
| SN | integer |
None. |
|
| ID | integer |
None. |
|
| CD | string |
None. |
|
| SQ | integer |
None. |
|
| SD | date |
None. |
|
| ED | date |
None. |
|
| EX | date |
None. |
|
| DA | decimal number |
None. |
|
| DQ | decimal number |
None. |
|
| DM | string |
None. |
|
| DD | string |
None. |
|
| D1 | date |
None. |
|
| D2 | date |
None. |
|
| D3 | date |
None. |
|
| D4 | date |
None. |
|
| D5 | date |
None. |
|
| D6 | date |
None. |
|
| D7 | date |
None. |
|
| D8 | date |
None. |
|
| D9 | date |
None. |
|
| MG | string |
None. |
|
| IN | string |
None. |
|
| MO | string |
None. |
|
| CO | string |
None. |
|
| PR | string |
None. |
|
| RX | string |
None. |
|
| HM | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"SC": 1,
"SN": 2,
"ID": 3,
"CD": "sample string 4",
"SQ": 5,
"SD": "2026-02-03T18:33:54.7502006-08:00",
"ED": "2026-02-03T18:33:54.7502006-08:00",
"EX": "2026-02-03T18:33:54.7502006-08:00",
"DA": 6.0,
"DQ": 7.0,
"DM": "sample string 8",
"DD": "sample string 9",
"D1": "2026-02-03T18:33:54.7502006-08:00",
"D2": "2026-02-03T18:33:54.7502006-08:00",
"D3": "2026-02-03T18:33:54.7502006-08:00",
"D4": "2026-02-03T18:33:54.7502006-08:00",
"D5": "2026-02-03T18:33:54.7502006-08:00",
"D6": "2026-02-03T18:33:54.7502006-08:00",
"D7": "2026-02-03T18:33:54.7502006-08:00",
"D8": "2026-02-03T18:33:54.7502006-08:00",
"D9": "2026-02-03T18:33:54.7502006-08:00",
"MG": "sample string 10",
"IN": "sample string 11",
"MO": "sample string 12",
"CO": "sample string 13",
"PR": "sample string 14",
"RX": "sample string 15",
"HM": true
}
application/xml, text/xml
Sample:
<MlmTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMint.Aeries.DataV2"> <CD>sample string 4</CD> <CO>sample string 13</CO> <D1>2026-02-03T18:33:54.7502006-08:00</D1> <D2>2026-02-03T18:33:54.7502006-08:00</D2> <D3>2026-02-03T18:33:54.7502006-08:00</D3> <D4>2026-02-03T18:33:54.7502006-08:00</D4> <D5>2026-02-03T18:33:54.7502006-08:00</D5> <D6>2026-02-03T18:33:54.7502006-08:00</D6> <D7>2026-02-03T18:33:54.7502006-08:00</D7> <D8>2026-02-03T18:33:54.7502006-08:00</D8> <D9>2026-02-03T18:33:54.7502006-08:00</D9> <DA>6</DA> <DD>sample string 9</DD> <DM>sample string 8</DM> <DQ>7</DQ> <ED>2026-02-03T18:33:54.7502006-08:00</ED> <EX>2026-02-03T18:33:54.7502006-08:00</EX> <HM>true</HM> <ID>3</ID> <IN>sample string 11</IN> <MG>sample string 10</MG> <MO>sample string 12</MO> <PR>sample string 14</PR> <RX>sample string 15</RX> <SC>1</SC> <SD>2026-02-03T18:33:54.7502006-08:00</SD> <SN>2</SN> <SQ>5</SQ> </MlmTable>
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:33:54.7658248-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:33:54.7658248-08:00</Timestamp> <ID>2</ID> <SC>3</SC> <SN>4</SN> <SQ>1</SQ> </StudentSequenceApiStatus>