PUT api/Roster/UpdateUserAttendence

Request Information

URI Parameters

None.

Body Parameters

Collection of UserEnrolledEntity
NameDescriptionTypeAdditional information
InScheduleID

integer

None.

InEmployeeEmail

string

None.

InAttended

string

None.

InEnrollmentStatus

string

None.

InModifiedBy

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "InScheduleID": 1,
    "InEmployeeEmail": "sample string 2",
    "InAttended": "sample string 3",
    "InEnrollmentStatus": "sample string 4",
    "InModifiedBy": "sample string 5"
  },
  {
    "InScheduleID": 1,
    "InEmployeeEmail": "sample string 2",
    "InAttended": "sample string 3",
    "InEnrollmentStatus": "sample string 4",
    "InModifiedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserEnrolledEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abbott.HR.Training.Entity">
  <UserEnrolledEntity>
    <InAttended>sample string 3</InAttended>
    <InEmployeeEmail>sample string 2</InEmployeeEmail>
    <InEnrollmentStatus>sample string 4</InEnrollmentStatus>
    <InModifiedBy>sample string 5</InModifiedBy>
    <InScheduleID>1</InScheduleID>
  </UserEnrolledEntity>
  <UserEnrolledEntity>
    <InAttended>sample string 3</InAttended>
    <InEmployeeEmail>sample string 2</InEmployeeEmail>
    <InEnrollmentStatus>sample string 4</InEnrollmentStatus>
    <InModifiedBy>sample string 5</InModifiedBy>
    <InScheduleID>1</InScheduleID>
  </UserEnrolledEntity>
</ArrayOfUserEnrolledEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>