POST api/OSM/OSMUpdateObjectiveScore

Request Information

URI Parameters

None.

Body Parameters

Collection of ObjectiveScore1
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

string

Response 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>