GET AttendShift?UserId={UserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserId

string

Required

Body Parameters

None.

Response Information

Resource Description

ShiftScheduleUser
NameDescriptionTypeAdditional information
id

integer

None.

DateCreated

date

None.

LastModified

date

None.

EmployeeId

string

None.

AreaId

integer

None.

ShiftId

integer

None.

Attended

boolean

None.

TimeLoggedin

date

None.

TimeLoggedOut

date

None.

HoursWorked

decimal number

None.

Active

boolean

None.

UserId

string

None.

TimeAttendShiftIn

date

None.

TimeAttendShiftOut

date

None.

OnDuty

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "DateCreated": "2025-12-09T04:06:26.480549+02:00",
  "LastModified": "2025-12-09T04:06:26.480549+02:00",
  "EmployeeId": "sample string 4",
  "AreaId": 1,
  "ShiftId": 1,
  "Attended": true,
  "TimeLoggedin": "2025-12-09T04:06:26.480549+02:00",
  "TimeLoggedOut": "2025-12-09T04:06:26.480549+02:00",
  "HoursWorked": 6.1,
  "Active": true,
  "UserId": "sample string 8",
  "TimeAttendShiftIn": "2025-12-09T04:06:26.480549+02:00",
  "TimeAttendShiftOut": "2025-12-09T04:06:26.480549+02:00",
  "OnDuty": true
}

application/xml, text/xml

Sample:
<ShiftScheduleUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PanicSAAPI.Database">
  <Active>true</Active>
  <AreaId>1</AreaId>
  <Attended>true</Attended>
  <DateCreated>2025-12-09T04:06:26.480549+02:00</DateCreated>
  <EmployeeId>sample string 4</EmployeeId>
  <HoursWorked>6.1</HoursWorked>
  <LastModified>2025-12-09T04:06:26.480549+02:00</LastModified>
  <OnDuty>true</OnDuty>
  <ShiftId>1</ShiftId>
  <TimeAttendShiftIn>2025-12-09T04:06:26.480549+02:00</TimeAttendShiftIn>
  <TimeAttendShiftOut>2025-12-09T04:06:26.480549+02:00</TimeAttendShiftOut>
  <TimeLoggedOut>2025-12-09T04:06:26.480549+02:00</TimeLoggedOut>
  <TimeLoggedin>2025-12-09T04:06:26.480549+02:00</TimeLoggedin>
  <UserId>sample string 8</UserId>
  <id>1</id>
</ShiftScheduleUser>