POST api/Student/InsertIDIStudentLanguage/{studentid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studentid

string

Required

Body Parameters

StudentLanguage
NameDescriptionTypeAdditional information
stlangid

integer

None.

studentid

string

None.

languagename

string

None.

Request Formats

application/json, text/json

Sample:
{
  "stlangid": 1,
  "studentid": "sample string 2",
  "languagename": "sample string 3"
}

application/xml, text/xml

Sample:
<StudentLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <languagename>sample string 3</languagename>
  <stlangid>1</stlangid>
  <studentid>sample string 2</studentid>
</StudentLanguage>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>