POST api/User_Clock_Mapping/GetCurrentUserClockDetail
Request Information
URI Parameters
None.
Body Parameters
UserClockSaveModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| ClockEmail | string |
None. |
|
| CurrentDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 2,
"ClockEmail": "sample string 3",
"CurrentDate": "2026-06-30T14:14:19.2606939+01:00"
}
text/xml
Sample:
<UserClockSaveModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models"> <ClockEmail>sample string 3</ClockEmail> <CurrentDate>2026-06-30T14:14:19.2606939+01:00</CurrentDate> <ID>1</ID> <UserID>2</UserID> </UserClockSaveModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
User_Clock_MappingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| UserRoleID | integer |
None. |
|
| Name | string |
None. |
|
| StartDate | date |
None. |
|
| StartTime | string |
None. |
|
| EndDate | date |
None. |
|
| EndTime | string |
None. |
|
| TotalHours | string |
None. |
|
| ClockInEmail | string |
None. |
|
| ClockOutEmail | string |
None. |
|
| IsModified | boolean |
None. |
|
| Status | string |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 1,
"UserRoleID": 1,
"Name": "sample string 2",
"StartDate": "2026-06-30T14:14:19.2659753+01:00",
"StartTime": "sample string 3",
"EndDate": "2026-06-30T14:14:19.2659753+01:00",
"EndTime": "sample string 4",
"TotalHours": "sample string 5",
"ClockInEmail": "sample string 6",
"ClockOutEmail": "sample string 7",
"IsModified": true,
"Status": "sample string 8",
"IsDeleted": true,
"CreatedDate": "2026-06-30T14:14:19.2659753+01:00",
"UpdatedDate": "2026-06-30T14:14:19.2659753+01:00",
"CreatedBy": 1,
"UpdatedBy": 1
}
text/xml
Sample:
<User_Clock_MappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models"> <ClockInEmail>sample string 6</ClockInEmail> <ClockOutEmail>sample string 7</ClockOutEmail> <CreatedBy>1</CreatedBy> <CreatedDate>2026-06-30T14:14:19.2659753+01:00</CreatedDate> <EndDate>2026-06-30T14:14:19.2659753+01:00</EndDate> <EndTime>sample string 4</EndTime> <ID>1</ID> <IsDeleted>true</IsDeleted> <IsModified>true</IsModified> <Name>sample string 2</Name> <StartDate>2026-06-30T14:14:19.2659753+01:00</StartDate> <StartTime>sample string 3</StartTime> <Status>sample string 8</Status> <TotalHours>sample string 5</TotalHours> <UpdatedBy>1</UpdatedBy> <UpdatedDate>2026-06-30T14:14:19.2659753+01:00</UpdatedDate> <UserID>1</UserID> <UserRoleID>1</UserRoleID> </User_Clock_MappingModel>