PUT api/Roster/UpdateSessionUserAttendence
Request Information
URI Parameters
None.
Body Parameters
Collection of SessionUserEnrolledEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| InScheduleID | integer |
None. |
|
| InSessionID | integer |
None. |
|
| InEmployeeEmail | string |
None. |
|
| InAttended | string |
None. |
|
| InModifiedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"InScheduleID": 1,
"InSessionID": 2,
"InEmployeeEmail": "sample string 3",
"InAttended": "sample string 4",
"InModifiedBy": "sample string 5"
},
{
"InScheduleID": 1,
"InSessionID": 2,
"InEmployeeEmail": "sample string 3",
"InAttended": "sample string 4",
"InModifiedBy": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfSessionUserEnrolledEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abbott.HR.Training.Entity">
<SessionUserEnrolledEntity>
<InAttended>sample string 4</InAttended>
<InEmployeeEmail>sample string 3</InEmployeeEmail>
<InModifiedBy>sample string 5</InModifiedBy>
<InScheduleID>1</InScheduleID>
<InSessionID>2</InSessionID>
</SessionUserEnrolledEntity>
<SessionUserEnrolledEntity>
<InAttended>sample string 4</InAttended>
<InEmployeeEmail>sample string 3</InEmployeeEmail>
<InModifiedBy>sample string 5</InModifiedBy>
<InScheduleID>1</InScheduleID>
<InSessionID>2</InSessionID>
</SessionUserEnrolledEntity>
</ArrayOfSessionUserEnrolledEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>