POST api/Center/UpdateAwarenessSessionDetails/{empid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| empid | string |
Required |
Body Parameters
Collection of AwarenessBodyDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| studentid | string |
None. |
|
| studentname | string |
None. |
|
| attstatus | integer |
None. |
|
| absentremark | string |
None. |
|
| anothertotext | string |
None. |
|
| ladid | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"studentid": "sample string 1",
"studentname": "sample string 2",
"attstatus": 3,
"absentremark": "sample string 4",
"anothertotext": "sample string 5",
"ladid": 6
},
{
"studentid": "sample string 1",
"studentname": "sample string 2",
"attstatus": 3,
"absentremark": "sample string 4",
"anothertotext": "sample string 5",
"ladid": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfAwarenessBodyDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
<AwarenessBodyDetails>
<absentremark>sample string 4</absentremark>
<anothertotext>sample string 5</anothertotext>
<attstatus>3</attstatus>
<ladid>6</ladid>
<studentid>sample string 1</studentid>
<studentname>sample string 2</studentname>
</AwarenessBodyDetails>
<AwarenessBodyDetails>
<absentremark>sample string 4</absentremark>
<anothertotext>sample string 5</anothertotext>
<attstatus>3</attstatus>
<ladid>6</ladid>
<studentid>sample string 1</studentid>
<studentname>sample string 2</studentname>
</AwarenessBodyDetails>
</ArrayOfAwarenessBodyDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>