PUT api/v1/candidates/timesheets/times/{timeUid}
Updates an individual timesheet time record
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| timeUid |
the uid |
globally unique identifier |
Required |
Body Parameters
the record being updated
CandidateTimesheetTime| Name | Description | Type | Additional information |
|---|---|---|---|
| Uid |
The uid for this item |
globally unique identifier |
None. |
| OriginalPlacementBookingId |
The original booking this timespan relates to |
integer |
None. |
| StartDate |
The start date. |
date |
None. |
| EndDate |
The end date. |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Uid": "c71bf847-c218-49a0-a224-d172ab26dc10",
"OriginalPlacementBookingId": 2,
"StartDate": "2025-10-27T14:02:18.6785368+00:00",
"EndDate": "2025-10-27T14:02:18.6785368+00:00"
}
application/xml, text/xml
Sample:
<CandidateTimesheetTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models"> <EndDate>2025-10-27T14:02:18.6785368+00:00</EndDate> <OriginalPlacementBookingId>2</OriginalPlacementBookingId> <StartDate>2025-10-27T14:02:18.6785368+00:00</StartDate> <Uid>c71bf847-c218-49a0-a224-d172ab26dc10</Uid> </CandidateTimesheetTime>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CandidateTimesheetTimeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OriginalPlacementBookingId |
The original placement booking this time period is related to |
integer |
None. |
| StartDate |
The start date/time. |
date |
None. |
| EndDate |
The end date/time. |
date |
None. |
| Uid |
The GUID. |
globally unique identifier |
None. |
| Links |
The links. |
Collection of Link |
None. |
| DateUpdated |
Last time the record was updated |
date |
None. |
| UpdatedBy |
Who updated the record last |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"OriginalPlacementBookingId": 1,
"StartDate": "2025-10-27T14:02:18.6785368+00:00",
"EndDate": "2025-10-27T14:02:18.6785368+00:00",
"Uid": "358ff21c-fb2d-49eb-8bbc-bb74cf9a3a0c",
"Links": [
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
},
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
}
],
"DateUpdated": "2025-10-27T14:02:18.6785368+00:00",
"UpdatedBy": "sample string 3"
}
application/xml, text/xml
Sample:
<CandidateTimesheetTimeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.ViewModels">
<DateUpdated>2025-10-27T14:02:18.6785368+00:00</DateUpdated>
<Links xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d2p1:Link>
<d2p1:Href>http://webapihelppage1.com/</d2p1:Href>
<d2p1:Method>sample string 2</d2p1:Method>
<d2p1:Rel>sample string 3</d2p1:Rel>
<d2p1:Title>sample string 4</d2p1:Title>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:Link>
<d2p1:Link>
<d2p1:Href>http://webapihelppage1.com/</d2p1:Href>
<d2p1:Method>sample string 2</d2p1:Method>
<d2p1:Rel>sample string 3</d2p1:Rel>
<d2p1:Title>sample string 4</d2p1:Title>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:Link>
</Links>
<Uid>358ff21c-fb2d-49eb-8bbc-bb74cf9a3a0c</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<EndDate>2025-10-27T14:02:18.6785368+00:00</EndDate>
<OriginalPlacementBookingId>1</OriginalPlacementBookingId>
<StartDate>2025-10-27T14:02:18.6785368+00:00</StartDate>
</CandidateTimesheetTimeViewModel>