POST api/Center/UpdateCarrerGuidanceDetails/{empid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
empid

string

Required

Body Parameters

Collection of CareerBodyDetails
NameDescriptionTypeAdditional information
lcgdid

integer

None.

studentid

string

None.

studentname

string

None.

attstatus

integer

None.

absentremark

string

None.

anothertotext

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "lcgdid": 1,
    "studentid": "sample string 2",
    "studentname": "sample string 3",
    "attstatus": 4,
    "absentremark": "sample string 5",
    "anothertotext": "sample string 6"
  },
  {
    "lcgdid": 1,
    "studentid": "sample string 2",
    "studentname": "sample string 3",
    "attstatus": 4,
    "absentremark": "sample string 5",
    "anothertotext": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCareerBodyDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <CareerBodyDetails>
    <absentremark>sample string 5</absentremark>
    <anothertotext>sample string 6</anothertotext>
    <attstatus>4</attstatus>
    <lcgdid>1</lcgdid>
    <studentid>sample string 2</studentid>
    <studentname>sample string 3</studentname>
  </CareerBodyDetails>
  <CareerBodyDetails>
    <absentremark>sample string 5</absentremark>
    <anothertotext>sample string 6</anothertotext>
    <attstatus>4</attstatus>
    <lcgdid>1</lcgdid>
    <studentid>sample string 2</studentid>
    <studentname>sample string 3</studentname>
  </CareerBodyDetails>
</ArrayOfCareerBodyDetails>

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>