POST api/postPersonalComment

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objpostPersonalComment
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "schoolid": 1,
  "branchid": 2,
  "classid": 3,
  "divisionid": 4,
  "comment": "sample string 5",
  "studentid": 6,
  "postdate": "sample string 7",
  "staffid": 8
}

text/html

Sample:
{"schoolid":1,"branchid":2,"classid":3,"divisionid":4,"comment":"sample string 5","studentid":6,"postdate":"sample string 7","staffid":8}

application/xml, text/xml

Sample:
<postPersonalComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/preschoolwebservicewebapi.Models">
  <branchid>2</branchid>
  <classid>3</classid>
  <comment>sample string 5</comment>
  <divisionid>4</divisionid>
  <postdate>sample string 7</postdate>
  <schoolid>1</schoolid>
  <staffid>8</staffid>
  <studentid>6</studentid>
</postPersonalComment>

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 'postPersonalComment'.