POST api/User_Clock_Mapping/GetCurrentUserClockStatus
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:13:27.4873364+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:13:27.4873364+01:00</CurrentDate> <ID>1</ID> <UserID>2</UserID> </UserClockSaveModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>