POST api/User_Clock_Mapping/Create

Request Information

URI Parameters

None.

Body Parameters

UserClockSaveModel
NameDescriptionTypeAdditional 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:25.5190609+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:25.5190609+01:00</CurrentDate>
  <ID>1</ID>
  <UserID>2</UserID>
</UserClockSaveModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserClockSaveModel'.

Response Information

Resource Description

string

Response 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>