PUT api/StudentRemarkEntry/Update

Request Information

URI Parameters

None.

Body Parameters

StudentRemarkEntryUpdateVM
NameDescriptionTypeAdditional information
StdRemarkEntryId

integer

Required

EntryDate

string

Required

Student

StudentLookupVM

Required

StdRemarkType

StudentRemarkTypeLookupVM

Required

Remarks

string

String length: inclusive between 0 and 4000

Status

string

Required

Matching regular expression pattern: A|I

UpdateUser

integer

Required

UpdateIp

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "StdRemarkEntryId": 1,
  "EntryDate": "sample string 2",
  "Student": {
    "StudentId": 1,
    "StudentName": "sample string 2",
    "GuardianName": "sample string 3"
  },
  "StdRemarkType": {
    "StdRemTypeId": 1,
    "StdRemTypeName": "sample string 2"
  },
  "Remarks": "sample string 3",
  "Status": "sample string 4",
  "UpdateUser": 5,
  "UpdateIp": "sample string 6"
}

application/xml, text/xml

Sample:
<StudentRemarkEntryUpdateVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <EntryDate>sample string 2</EntryDate>
  <Remarks>sample string 3</Remarks>
  <Status>sample string 4</Status>
  <StdRemarkEntryId>1</StdRemarkEntryId>
  <StdRemarkType>
    <StdRemTypeId>1</StdRemTypeId>
    <StdRemTypeName>sample string 2</StdRemTypeName>
  </StdRemarkType>
  <Student>
    <GuardianName>sample string 3</GuardianName>
    <StudentId>1</StudentId>
    <StudentName>sample string 2</StudentName>
  </Student>
  <UpdateIp>sample string 6</UpdateIp>
  <UpdateUser>5</UpdateUser>
</StudentRemarkEntryUpdateVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.