POST api/GetSubjectsV2
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SubjectList| Name | Description | Type | Additional information |
|---|---|---|---|
| Subject_List | Collection of Subject |
None. |
Response Formats
application/json, text/json
Sample:
{
"Subject_List": [
{
"SubjectId": "sample string 1",
"SubjectName": "sample string 2"
},
{
"SubjectId": "sample string 1",
"SubjectName": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<SubjectList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
<Subject_List>
<Subject>
<SubjectId>sample string 1</SubjectId>
<SubjectName>sample string 2</SubjectName>
</Subject>
<Subject>
<SubjectId>sample string 1</SubjectId>
<SubjectName>sample string 2</SubjectName>
</Subject>
</Subject_List>
</SubjectList>