POST api/Student/InsertATLParticipationEval/{studentid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
studentid | string |
Required |
Body Parameters
ATLParticipationEvalName | Description | Type | Additional information |
---|---|---|---|
pvid | integer |
None. |
|
studentid | string |
None. |
|
category | string |
None. |
|
c1 | integer |
None. |
|
c2 | integer |
None. |
|
c3 | integer |
None. |
|
total | integer |
None. |
|
status | integer |
None. |
|
topic | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "pvid": 1, "studentid": "sample string 2", "category": "sample string 3", "c1": 1, "c2": 1, "c3": 1, "total": 1, "status": 1, "topic": "sample string 4" }
application/xml, text/xml
Sample:
<ATLParticipationEval xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models"> <c1>1</c1> <c2>1</c2> <c3>1</c3> <category>sample string 3</category> <pvid>1</pvid> <status>1</status> <studentid>sample string 2</studentid> <topic>sample string 4</topic> <total>1</total> </ATLParticipationEval>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>