POST api/OSM/OSMUpdateObjectiveScore
Request Information
URI Parameters
None.
Body Parameters
Collection of ObjectiveScore1| Name | Description | Type | Additional information |
|---|---|---|---|
| RollNo | string |
None. |
|
| ExamID | integer |
None. |
|
| ObjectiveScore | decimal number |
None. |
|
| IsObjscoreTransferredatOSM | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"RollNo": "sample string 1",
"ExamID": 2,
"ObjectiveScore": 3.0,
"IsObjscoreTransferredatOSM": "sample string 4"
},
{
"RollNo": "sample string 1",
"ExamID": 2,
"ObjectiveScore": 3.0,
"IsObjscoreTransferredatOSM": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfObjectiveScore1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EklavvyaWebAPI.Models">
<ObjectiveScore1>
<ExamID>2</ExamID>
<IsObjscoreTransferredatOSM>sample string 4</IsObjscoreTransferredatOSM>
<ObjectiveScore>3</ObjectiveScore>
<RollNo>sample string 1</RollNo>
</ObjectiveScore1>
<ObjectiveScore1>
<ExamID>2</ExamID>
<IsObjscoreTransferredatOSM>sample string 4</IsObjscoreTransferredatOSM>
<ObjectiveScore>3</ObjectiveScore>
<RollNo>sample string 1</RollNo>
</ObjectiveScore1>
</ArrayOfObjectiveScore1>
application/x-www-form-urlencoded
Sample:
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>