POST api/v1/portals/{portalUid}/customer/timesheets
Create a new timesheet in the portal
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| portalUid |
the portal to create the timesheet in |
globally unique identifier |
Required |
Body Parameters
the timesheet to create
CustomerTimesheet| Name | Description | Type | Additional information |
|---|---|---|---|
| PlacementGuid |
The placement this timesheet is for |
globally unique identifier |
Required |
| Reference |
Gets or sets the reference. |
string |
String length: inclusive between 0 and 1000 |
| PeriodStart |
The period start. |
date |
Required |
| PeriodEnd |
The period end. |
date |
Required |
| Owner |
Who owns this timesheet |
string |
String length: inclusive between 0 and 512 |
| PONumber |
The timesheet PO number |
string |
None. |
| Note |
The note. |
string |
String length: inclusive between 0 and 1000 |
| CandidateTimesheetItem |
The candidate timesheet item. |
Collection of CandidateTimesheetItem |
None. |
| IsModified |
Is this timesheet modified |
boolean |
None. |
| ModifiedBy |
Who modified the timesheet |
string |
None. |
| ModifiedDate |
When was it modified |
date |
None. |
| IsProcessed |
Is this timesheet submitted |
boolean |
None. |
| ProcessedBy |
Who processed the timesheet |
string |
None. |
| ProcessedDate |
When was is processed |
date |
None. |
| IsRejected |
Is this timesheet rejected |
boolean |
None. |
| RejectedBy |
Who rejected the timesheet |
string |
String length: inclusive between 0 and 512 |
| RejectedDate |
When was it rejected |
date |
None. |
| RejectionReason |
Why was this timesheet rejected |
string |
String length: inclusive between 0 and 255 |
| IsApproved |
Has the timesheet be approved |
boolean |
None. |
| ApprovedBy |
Who approved the timesheet |
string |
None. |
| ApprovedDate |
When was the timesheet approved |
date |
None. |
| IsAuthorised |
Has the timesheet be authorised |
boolean |
None. |
| AuthorisedBy |
Who authorised the timesheet |
string |
None. |
| AuthorisedDate |
When was the timesheet authorised |
date |
None. |
| IsInvoiced |
Has the timesheet be invoiced |
boolean |
None. |
| InvoicedBy |
Who invoiced the timesheet |
string |
None. |
| InvoicedDate |
When was the timesheet invoiced |
date |
None. |
| IsPaid |
Has the timesheet been paid |
boolean |
None. |
| PaidBy |
Who paid the timesheet |
string |
None. |
| PaidDate |
When was the timesheet paid |
date |
None. |
Request Formats
application/json, text/json
{
"PlacementGuid": "72e09cdb-b1c4-4a37-bd38-983dc92c55ef",
"Reference": "sample string 2",
"PeriodStart": "2025-10-27T14:00:38.867357+00:00",
"PeriodEnd": "2025-10-27T14:00:38.867357+00:00",
"Owner": "sample string 5",
"PONumber": "sample string 6",
"Note": "sample string 7",
"CandidateTimesheetItem": [
{
"Uid": "1159ce73-3b9e-474e-80eb-45a823ed8e38",
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"RateName": "sample string 2",
"RateUnit": 3.1,
"IsExpense": true,
"OriginalPlacementBookingId": 1
},
{
"Uid": "1159ce73-3b9e-474e-80eb-45a823ed8e38",
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"RateName": "sample string 2",
"RateUnit": 3.1,
"IsExpense": true,
"OriginalPlacementBookingId": 1
}
],
"IsModified": true,
"ModifiedBy": "sample string 8",
"ModifiedDate": "2025-10-27T14:00:38.867357+00:00",
"IsProcessed": true,
"ProcessedBy": "sample string 9",
"ProcessedDate": "2025-10-27T14:00:38.867357+00:00",
"IsRejected": true,
"RejectedBy": "sample string 10",
"RejectedDate": "2025-10-27T14:00:38.867357+00:00",
"RejectionReason": "sample string 11",
"IsApproved": true,
"ApprovedBy": "sample string 12",
"ApprovedDate": "2025-10-27T14:00:38.867357+00:00",
"IsAuthorised": true,
"AuthorisedBy": "sample string 13",
"AuthorisedDate": "2025-10-27T14:00:38.867357+00:00",
"IsInvoiced": true,
"InvoicedBy": "sample string 14",
"InvoicedDate": "2025-10-27T14:00:38.867357+00:00",
"IsPaid": true,
"PaidBy": "sample string 15",
"PaidDate": "2025-10-27T14:00:38.867357+00:00"
}
application/xml, text/xml
<CustomerTimesheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<ApprovedBy>sample string 12</ApprovedBy>
<ApprovedDate>2025-10-27T14:00:38.867357+00:00</ApprovedDate>
<AuthorisedBy>sample string 13</AuthorisedBy>
<AuthorisedDate>2025-10-27T14:00:38.867357+00:00</AuthorisedDate>
<CandidateTimesheetItem>
<CandidateTimesheetItem>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsExpense>true</IsExpense>
<OriginalPlacementBookingId>1</OriginalPlacementBookingId>
<RateName>sample string 2</RateName>
<RateUnit>3.1</RateUnit>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
<Uid>1159ce73-3b9e-474e-80eb-45a823ed8e38</Uid>
</CandidateTimesheetItem>
<CandidateTimesheetItem>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsExpense>true</IsExpense>
<OriginalPlacementBookingId>1</OriginalPlacementBookingId>
<RateName>sample string 2</RateName>
<RateUnit>3.1</RateUnit>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
<Uid>1159ce73-3b9e-474e-80eb-45a823ed8e38</Uid>
</CandidateTimesheetItem>
</CandidateTimesheetItem>
<InvoicedBy>sample string 14</InvoicedBy>
<InvoicedDate>2025-10-27T14:00:38.867357+00:00</InvoicedDate>
<IsApproved>true</IsApproved>
<IsAuthorised>true</IsAuthorised>
<IsInvoiced>true</IsInvoiced>
<IsModified>true</IsModified>
<IsPaid>true</IsPaid>
<IsProcessed>true</IsProcessed>
<IsRejected>true</IsRejected>
<ModifiedBy>sample string 8</ModifiedBy>
<ModifiedDate>2025-10-27T14:00:38.867357+00:00</ModifiedDate>
<Note>sample string 7</Note>
<Owner>sample string 5</Owner>
<PONumber>sample string 6</PONumber>
<PaidBy>sample string 15</PaidBy>
<PaidDate>2025-10-27T14:00:38.867357+00:00</PaidDate>
<PeriodEnd>2025-10-27T14:00:38.867357+00:00</PeriodEnd>
<PeriodStart>2025-10-27T14:00:38.867357+00:00</PeriodStart>
<PlacementGuid>72e09cdb-b1c4-4a37-bd38-983dc92c55ef</PlacementGuid>
<ProcessedBy>sample string 9</ProcessedBy>
<ProcessedDate>2025-10-27T14:00:38.867357+00:00</ProcessedDate>
<Reference>sample string 2</Reference>
<RejectedBy>sample string 10</RejectedBy>
<RejectedDate>2025-10-27T14:00:38.867357+00:00</RejectedDate>
<RejectionReason>sample string 11</RejectionReason>
</CustomerTimesheet>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
the created timesheet
CandidateTimesheetViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Candidate |
The candidate. |
CandidateViewModel |
None. |
| Company |
The company. |
CompanyViewModel |
None. |
| Client |
The client. |
ClientViewModel |
None. |
| PeriodStart |
The period start. |
date |
None. |
| PeriodEnd |
The period end. |
date |
None. |
| TimesheetStatus |
The status. |
TimesheetStatusViewModel |
None. |
| Note |
The note. |
string |
None. |
| Reference |
Gets or sets the timesheet reference. |
string |
None. |
| CandidateTimesheetItem |
The time sheet items. |
Collection of CandidateTimesheetItemViewModel |
None. |
| IsRejected |
Is this timesheet rejected |
boolean |
None. |
| RejectionReason |
Why was this timesheet rejected |
string |
None. |
| RejectedBy |
Who rejected the timesheet |
string |
None. |
| RejectedDate |
Date the rejection occured |
date |
None. |
| Owner |
The owner of the timesheet (taken from the placement owner |
string |
None. |
| IsModified |
Has the timesheet been modified |
boolean |
None. |
| IsProcess |
Has the timesheet be set to process |
boolean |
None. |
| ProcessedDate |
When was the timesheet processed |
date |
None. |
| ProcessedBy |
Who processed the timesheet |
string |
None. |
| IsApproved |
Has the timesheet been approved |
boolean |
None. |
| IsAuthorised |
Has the timesheet been authorised |
boolean |
None. |
| AuthorisedDate |
When was the timesheet authorised |
date |
None. |
| AuthorisedBy |
Who authorised the timesheet |
string |
None. |
| Placement |
The placement view model |
PlacementViewModel |
None. |
| IsTimebased |
Is the timesheet time or unit based |
boolean |
None. |
| PONumber |
The timesheet PO number |
string |
None. |
| IsInvoiced |
Has the timesheet been invoiced |
boolean |
None. |
| InvoicedBy |
Who invoiced the timesheet |
string |
None. |
| InvoicedDate |
Date the timesheet was invoiced |
date |
None. |
| IsPaid |
Is Paid status |
boolean |
None. |
| PaidBy |
who paid it |
string |
None. |
| PaidDate |
Date it was paid |
date |
None. |
| CandidateTimesheetTimes |
The time periods related to this timesheet for timebased timesheets |
Collection of CandidateTimesheetTimeViewModel |
None. |
| TimesheetGuid |
The timesheets guid |
globally unique identifier |
None. |
| CanUpdate |
Can this timesheet be updated by the user |
boolean |
None. |
| CanSubmit |
Can this timesheet be submitted by the user |
boolean |
None. |
| CanApprove |
Can this timesheet be approved by the user |
boolean |
None. |
| CanAuthorise |
Can this timesheet be authorised by the user |
boolean |
None. |
| CanReject |
Can this timesheet be rejected by the user |
boolean |
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
{
"Candidate": {
"Title": "sample string 1",
"Forename": "sample string 2",
"Surname": "sample string 3",
"OtherNames": "sample string 4",
"AddressLine1": "sample string 5",
"AddressLine2": "sample string 6",
"AddressLine3": "sample string 7",
"AddressLine4": "sample string 8",
"PostCode": "sample string 9",
"Country": "sample string 10",
"Telephone": "sample string 11",
"Mobile": "sample string 12",
"Email": "sample string 13",
"Position": "sample string 14",
"Term": "sample string 15",
"EarliestStartDate": "2025-10-27T14:00:38.867357+00:00",
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 16",
"PrimaryIndustry": "sample string 17",
"PrimaryDiscipline": "sample string 18",
"PrimarySubDiscipline": "sample string 19",
"IsPrimaryIndustryDiscipline": true,
"PersonalStatement": "sample string 21",
"Latitude": 1.1,
"Longitude": 1.1,
"ReferralSource": "sample string 22",
"Gender": "sample string 23",
"Location": "sample string 24",
"Area": "sample string 25",
"Region": "sample string 26",
"EclipseStatus": "sample string 27",
"EclipseLastUpdated": "2025-10-27T14:00:38.867357+00:00",
"ComplianceExpires": "2025-10-27T14:00:38.867357+00:00",
"CandidateGuid": "766ba1e2-d784-4b6c-b121-dc59f14d7311",
"DateOfBirth": "2025-10-27T14:00:38.867357+00:00",
"Nationality": "sample string 29",
"EmploymentSought": "sample string 30",
"MinAnnualSalary": 31.1,
"MaxAnnualSalary": 32.1,
"MinHourlyPayrate": 33.1,
"MaxHourlyPayrate": 34.1,
"Uid": "abdab7e1-91f9-442d-94f4-c60078ab9495",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 36"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"PeriodStart": "2025-10-27T14:00:38.867357+00:00",
"PeriodEnd": "2025-10-27T14:00:38.867357+00:00",
"TimesheetStatus": {
"Name": "sample string 1",
"IsDefault": true,
"IsUpdatable": true,
"IsApproved": true,
"IsAuthorised": true,
"IsInvoiced": true,
"IsModified": true,
"IsPending": true,
"IsRejected": true,
"IsSubmitted": true,
"IsPaid": true,
"CandidateAlias": "sample string 12",
"ClientContactAlias": "sample string 13",
"Uid": "fc1c16ba-e4d5-41e4-8153-4525caee5bd5",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 15"
},
"Note": "sample string 3",
"Reference": "sample string 4",
"CandidateTimesheetItem": [
{
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"RateName": "sample string 1",
"RateUnit": 2.1,
"IsExpense": true,
"OriginalPlacementBookingid": 1,
"Uid": "a9ba22e8-ef48-4e7b-9b29-fb206b5022bc",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
{
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"RateName": "sample string 1",
"RateUnit": 2.1,
"IsExpense": true,
"OriginalPlacementBookingid": 1,
"Uid": "a9ba22e8-ef48-4e7b-9b29-fb206b5022bc",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
}
],
"IsRejected": true,
"RejectionReason": "sample string 5",
"RejectedBy": "sample string 6",
"RejectedDate": "2025-10-27T14:00:38.867357+00:00",
"Owner": "sample string 7",
"IsModified": true,
"IsProcess": true,
"ProcessedDate": "2025-10-27T14:00:38.867357+00:00",
"ProcessedBy": "sample string 10",
"IsApproved": true,
"IsAuthorised": true,
"AuthorisedDate": "2025-10-27T14:00:38.867357+00:00",
"AuthorisedBy": "sample string 13",
"Placement": {
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientContact": {
"Forename": "sample string 1",
"Surname": "sample string 2",
"JobTitle": "sample string 3",
"Telephone": "sample string 4",
"Mobile": "sample string 5",
"Email": "sample string 6",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientSite": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": "sample string 7",
"Telephone": "sample string 8",
"Fax": "sample string 9",
"Email": "sample string 10",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientSiteGuid": "dde5310b-a2e5-4fbe-916c-cc40e8db51cb",
"Uid": "70753cf4-be28-41ff-8dbd-0249df120b69",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"CanEditClient": true,
"TimesheetNotificationAddress": "sample string 8",
"CanTimesheetOwnView": true,
"CanTimesheetOwnSubmit": true,
"CanTimesheetOwnApprove": true,
"CanTimesheetOwnAuthorise": true,
"CanTimesheetOwnReject": true,
"CanTimesheetOwnApproveAndAuthorise": true,
"CanTimesheetAnyView": true,
"CanTimesheetAnySubmit": true,
"CanTimesheetAnyApprove": true,
"CanTimesheetAnyAuthorise": true,
"CanTimesheetAnyReject": true,
"CanTimesheetAnyApproveAndAuthorise": true,
"CanTimesheetNotificationOverride": true,
"TimesheetNotification": true,
"ClientContactGuid": "13b692a5-e1f3-43e2-ab58-4b00949c406c",
"Uid": "57453b80-f10e-405e-b0fa-08557a66c75e",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 25"
},
"Site": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": "sample string 7",
"Telephone": "sample string 8",
"Fax": "sample string 9",
"Email": "sample string 10",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientSiteGuid": "dde5310b-a2e5-4fbe-916c-cc40e8db51cb",
"Uid": "70753cf4-be28-41ff-8dbd-0249df120b69",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"Candidate": {
"Title": "sample string 1",
"Forename": "sample string 2",
"Surname": "sample string 3",
"OtherNames": "sample string 4",
"AddressLine1": "sample string 5",
"AddressLine2": "sample string 6",
"AddressLine3": "sample string 7",
"AddressLine4": "sample string 8",
"PostCode": "sample string 9",
"Country": "sample string 10",
"Telephone": "sample string 11",
"Mobile": "sample string 12",
"Email": "sample string 13",
"Position": "sample string 14",
"Term": "sample string 15",
"EarliestStartDate": "2025-10-27T14:00:38.867357+00:00",
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 16",
"PrimaryIndustry": "sample string 17",
"PrimaryDiscipline": "sample string 18",
"PrimarySubDiscipline": "sample string 19",
"IsPrimaryIndustryDiscipline": true,
"PersonalStatement": "sample string 21",
"Latitude": 1.1,
"Longitude": 1.1,
"ReferralSource": "sample string 22",
"Gender": "sample string 23",
"Location": "sample string 24",
"Area": "sample string 25",
"Region": "sample string 26",
"EclipseStatus": "sample string 27",
"EclipseLastUpdated": "2025-10-27T14:00:38.867357+00:00",
"ComplianceExpires": "2025-10-27T14:00:38.867357+00:00",
"CandidateGuid": "766ba1e2-d784-4b6c-b121-dc59f14d7311",
"DateOfBirth": "2025-10-27T14:00:38.867357+00:00",
"Nationality": "sample string 29",
"EmploymentSought": "sample string 30",
"MinAnnualSalary": 31.1,
"MaxAnnualSalary": 32.1,
"MinHourlyPayrate": 33.1,
"MaxHourlyPayrate": 34.1,
"Uid": "abdab7e1-91f9-442d-94f4-c60078ab9495",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 36"
},
"Reference": "sample string 1",
"Type": "sample string 2",
"JobTitle": "sample string 3",
"StartDate": "2025-10-27T14:00:38.867357+00:00",
"EndDate": "2025-10-27T14:00:38.867357+00:00",
"Notes": "sample string 4",
"Consultant": {
"Email": "sample string 1",
"Forename": "sample string 2",
"Surname": "sample string 3",
"JobTitle": "sample string 4",
"Mobile": "sample string 5",
"OtherNames": "sample string 6",
"Telephone": "sample string 7",
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ConsultantGuid": "5ce1c62f-dcd6-47c2-b478-e24dfd7270bd",
"Uid": "d0a26a82-8735-4e52-b6ff-1272ab7f8bb6",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 10"
},
"Vacancy": {
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"Reference": "sample string 1",
"JobType": {
"Name": "sample string 1",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"Uid": "8724c2b1-7816-4192-8158-34715a298cbf",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"Status": "sample string 2",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientContact": {
"Forename": "sample string 1",
"Surname": "sample string 2",
"JobTitle": "sample string 3",
"Telephone": "sample string 4",
"Mobile": "sample string 5",
"Email": "sample string 6",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientSite": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": "sample string 7",
"Telephone": "sample string 8",
"Fax": "sample string 9",
"Email": "sample string 10",
"Client": {
"AddressLine1": "sample string 1",
"AddressLine2": "sample string 2",
"AddressLine3": "sample string 3",
"AddressLine4": "sample string 4",
"Name": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ReferenceNumber": "sample string 7",
"TimesheetNotificationAddress": "sample string 8",
"ClientGuid": "a37d2951-795b-4ec2-9324-fab1e791f1fa",
"Uid": "cd0c0599-8f51-46e9-99e1-be88daf6ccf8",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 11"
},
"ClientSiteGuid": "dde5310b-a2e5-4fbe-916c-cc40e8db51cb",
"Uid": "70753cf4-be28-41ff-8dbd-0249df120b69",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"CanEditClient": true,
"TimesheetNotificationAddress": "sample string 8",
"CanTimesheetOwnView": true,
"CanTimesheetOwnSubmit": true,
"CanTimesheetOwnApprove": true,
"CanTimesheetOwnAuthorise": true,
"CanTimesheetOwnReject": true,
"CanTimesheetOwnApproveAndAuthorise": true,
"CanTimesheetAnyView": true,
"CanTimesheetAnySubmit": true,
"CanTimesheetAnyApprove": true,
"CanTimesheetAnyAuthorise": true,
"CanTimesheetAnyReject": true,
"CanTimesheetAnyApproveAndAuthorise": true,
"CanTimesheetNotificationOverride": true,
"TimesheetNotification": true,
"ClientContactGuid": "13b692a5-e1f3-43e2-ab58-4b00949c406c",
"Uid": "57453b80-f10e-405e-b0fa-08557a66c75e",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 25"
},
"JobTitle": "sample string 3",
"JobDescription": "sample string 4",
"Industry": "sample string 5",
"Discipline": "sample string 6",
"SubDiscipline": "sample string 7",
"Address1": "sample string 8",
"Address2": "sample string 9",
"Address3": "sample string 10",
"Address4": "sample string 11",
"Country": "sample string 12",
"Postcode": "sample string 13",
"Region": "sample string 14",
"Location": "sample string 15",
"Longitude": 1.1,
"Latitude": 1.1,
"Salary": "sample string 16",
"Rate": 1.1,
"RateFrequency": "sample string 17",
"Consultant": {
"Email": "sample string 1",
"Forename": "sample string 2",
"Surname": "sample string 3",
"JobTitle": "sample string 4",
"Mobile": "sample string 5",
"OtherNames": "sample string 6",
"Telephone": "sample string 7",
"Company": {
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "bbeb503c-2394-47fe-b5ed-fae092aa6f60",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "41e4101d-6215-4924-b2bf-672992586ec7",
"Uid": "fd26c7fa-cb3b-450c-bd8b-7bcd732008c2",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "bb4a81e0-6551-41da-a14a-b0ed1aed356b",
"PortalGuid": "f3fdbbff-b584-4368-8cb2-d195a870f0c9",
"CompanyGuid": "542226d0-aaee-4357-9c85-66db8a9e5a4b",
"Uid": "4b1d3625-9429-4db9-aca0-07a0fb8cd2b3",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 13"
},
"ConsultantGuid": "5ce1c62f-dcd6-47c2-b478-e24dfd7270bd",
"Uid": "d0a26a82-8735-4e52-b6ff-1272ab7f8bb6",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 10"
},
"Division": "sample string 18",
"StartDate": "2025-10-27T14:00:38.867357+00:00",
"EndDate": "2025-10-27T14:00:38.867357+00:00",
"Duration": "sample string 19",
"DateUpdated": "2025-10-27T14:00:38.867357+00:00",
"Uid": "02087b68-53a3-4cf7-be4f-575b8f9a1b1c",
"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"
}
],
"UpdatedBy": "sample string 22"
},
"Rates": [
{
"Name": "sample string 1",
"Pay": 2.1,
"IsExpense": true,
"Uid": "82c633a5-de4c-4526-a129-da39905976ed",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
},
{
"Name": "sample string 1",
"Pay": 2.1,
"IsExpense": true,
"Uid": "82c633a5-de4c-4526-a129-da39905976ed",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 5"
}
],
"PlacementGuid": "47c1d589-3dd3-4ad2-b5c3-b93cce879044",
"Bookings": [
{
"BookingGuid": "102ac1db-2eab-4320-99ed-40c3659878a8",
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"IsRule": true,
"RuleType": "A",
"Name": "sample string 6",
"OriginalPlacementBookingId": 7,
"Uid": "6b389712-637b-4205-973f-6cde1032122c",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 9"
},
{
"BookingGuid": "102ac1db-2eab-4320-99ed-40c3659878a8",
"StartTime": "2025-10-27T14:00:38.867357+00:00",
"EndTime": "2025-10-27T14:00:38.867357+00:00",
"IsRule": true,
"RuleType": "A",
"Name": "sample string 6",
"OriginalPlacementBookingId": 7,
"Uid": "6b389712-637b-4205-973f-6cde1032122c",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 9"
}
],
"Uid": "dd45e51d-9df8-4448-81ee-c316c7cddf8a",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 7"
},
"IsTimebased": true,
"PONumber": "sample string 15",
"IsInvoiced": true,
"InvoicedBy": "sample string 17",
"InvoicedDate": "2025-10-27T14:00:38.867357+00:00",
"IsPaid": true,
"PaidBy": "sample string 19",
"PaidDate": "2025-10-27T14:00:38.867357+00:00",
"CandidateTimesheetTimes": [
{
"OriginalPlacementBookingId": 1,
"StartDate": "2025-10-27T14:00:38.867357+00:00",
"EndDate": "2025-10-27T14:00:38.867357+00:00",
"Uid": "b8119196-c979-41d0-8c2e-a066695d8dc1",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
},
{
"OriginalPlacementBookingId": 1,
"StartDate": "2025-10-27T14:00:38.867357+00:00",
"EndDate": "2025-10-27T14:00:38.867357+00:00",
"Uid": "b8119196-c979-41d0-8c2e-a066695d8dc1",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 3"
}
],
"TimesheetGuid": "1a8374d8-a314-4a39-9be3-ce8ed1362f03",
"CanUpdate": true,
"CanSubmit": true,
"CanApprove": true,
"CanAuthorise": true,
"CanReject": true,
"Uid": "0bb5c16f-d058-4296-99a3-b9973d337b80",
"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:00:38.867357+00:00",
"UpdatedBy": "sample string 27"
}
application/xml, text/xml
<CandidateTimesheetViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.ViewModels">
<DateUpdated>2025-10-27T14:00:38.867357+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>0bb5c16f-d058-4296-99a3-b9973d337b80</Uid>
<UpdatedBy>sample string 27</UpdatedBy>
<AuthorisedBy>sample string 13</AuthorisedBy>
<AuthorisedDate>2025-10-27T14:00:38.867357+00:00</AuthorisedDate>
<CanApprove>true</CanApprove>
<CanAuthorise>true</CanAuthorise>
<CanReject>true</CanReject>
<CanSubmit>true</CanSubmit>
<CanUpdate>true</CanUpdate>
<Candidate>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>abdab7e1-91f9-442d-94f4-c60078ab9495</Uid>
<UpdatedBy>sample string 36</UpdatedBy>
<AddressLine1>sample string 5</AddressLine1>
<AddressLine2>sample string 6</AddressLine2>
<AddressLine3>sample string 7</AddressLine3>
<AddressLine4>sample string 8</AddressLine4>
<Area>sample string 25</Area>
<CandidateGuid>766ba1e2-d784-4b6c-b121-dc59f14d7311</CandidateGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<ComplianceExpires>2025-10-27T14:00:38.867357+00:00</ComplianceExpires>
<Country>sample string 10</Country>
<DateOfBirth>2025-10-27T14:00:38.867357+00:00</DateOfBirth>
<EarliestStartDate>2025-10-27T14:00:38.867357+00:00</EarliestStartDate>
<EclipseLastUpdated>2025-10-27T14:00:38.867357+00:00</EclipseLastUpdated>
<EclipseStatus>sample string 27</EclipseStatus>
<Email>sample string 13</Email>
<EmploymentSought>sample string 30</EmploymentSought>
<Forename>sample string 2</Forename>
<Gender>sample string 23</Gender>
<IsPrimaryIndustryDiscipline>true</IsPrimaryIndustryDiscipline>
<Latitude>1.1</Latitude>
<Location>sample string 24</Location>
<Longitude>1.1</Longitude>
<MaxAnnualSalary>32.1</MaxAnnualSalary>
<MaxHourlyPayrate>34.1</MaxHourlyPayrate>
<MinAnnualSalary>31.1</MinAnnualSalary>
<MinHourlyPayrate>33.1</MinHourlyPayrate>
<Mobile>sample string 12</Mobile>
<Nationality>sample string 29</Nationality>
<OtherNames>sample string 4</OtherNames>
<PersonalStatement>sample string 21</PersonalStatement>
<Position>sample string 14</Position>
<PostCode>sample string 9</PostCode>
<PrimaryDiscipline>sample string 18</PrimaryDiscipline>
<PrimaryIndustry>sample string 17</PrimaryIndustry>
<PrimarySubDiscipline>sample string 19</PrimarySubDiscipline>
<ReferenceNumber>sample string 16</ReferenceNumber>
<ReferralSource>sample string 22</ReferralSource>
<Region>sample string 26</Region>
<Surname>sample string 3</Surname>
<Telephone>sample string 11</Telephone>
<Term>sample string 15</Term>
<Title>sample string 1</Title>
</Candidate>
<CandidateTimesheetItem>
<CandidateTimesheetItemViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>a9ba22e8-ef48-4e7b-9b29-fb206b5022bc</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsExpense>true</IsExpense>
<OriginalPlacementBookingid>1</OriginalPlacementBookingid>
<RateName>sample string 1</RateName>
<RateUnit>2.1</RateUnit>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
</CandidateTimesheetItemViewModel>
<CandidateTimesheetItemViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>a9ba22e8-ef48-4e7b-9b29-fb206b5022bc</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsExpense>true</IsExpense>
<OriginalPlacementBookingid>1</OriginalPlacementBookingid>
<RateName>sample string 1</RateName>
<RateUnit>2.1</RateUnit>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
</CandidateTimesheetItemViewModel>
</CandidateTimesheetItem>
<CandidateTimesheetTimes>
<CandidateTimesheetTimeViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>b8119196-c979-41d0-8c2e-a066695d8dc1</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<EndDate>2025-10-27T14:00:38.867357+00:00</EndDate>
<OriginalPlacementBookingId>1</OriginalPlacementBookingId>
<StartDate>2025-10-27T14:00:38.867357+00:00</StartDate>
</CandidateTimesheetTimeViewModel>
<CandidateTimesheetTimeViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>b8119196-c979-41d0-8c2e-a066695d8dc1</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<EndDate>2025-10-27T14:00:38.867357+00:00</EndDate>
<OriginalPlacementBookingId>1</OriginalPlacementBookingId>
<StartDate>2025-10-27T14:00:38.867357+00:00</StartDate>
</CandidateTimesheetTimeViewModel>
</CandidateTimesheetTimes>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<InvoicedBy>sample string 17</InvoicedBy>
<InvoicedDate>2025-10-27T14:00:38.867357+00:00</InvoicedDate>
<IsApproved>true</IsApproved>
<IsAuthorised>true</IsAuthorised>
<IsInvoiced>true</IsInvoiced>
<IsModified>true</IsModified>
<IsPaid>true</IsPaid>
<IsProcess>true</IsProcess>
<IsRejected>true</IsRejected>
<IsTimebased>true</IsTimebased>
<Note>sample string 3</Note>
<Owner>sample string 7</Owner>
<PONumber>sample string 15</PONumber>
<PaidBy>sample string 19</PaidBy>
<PaidDate>2025-10-27T14:00:38.867357+00:00</PaidDate>
<PeriodEnd>2025-10-27T14:00:38.867357+00:00</PeriodEnd>
<PeriodStart>2025-10-27T14:00:38.867357+00:00</PeriodStart>
<Placement>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>dd45e51d-9df8-4448-81ee-c316c7cddf8a</Uid>
<UpdatedBy>sample string 7</UpdatedBy>
<Bookings>
<PlacementBookingViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>6b389712-637b-4205-973f-6cde1032122c</Uid>
<UpdatedBy>sample string 9</UpdatedBy>
<BookingGuid>102ac1db-2eab-4320-99ed-40c3659878a8</BookingGuid>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsRule>true</IsRule>
<Name>sample string 6</Name>
<OriginalPlacementBookingId>7</OriginalPlacementBookingId>
<RuleType>65</RuleType>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
</PlacementBookingViewModel>
<PlacementBookingViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>6b389712-637b-4205-973f-6cde1032122c</Uid>
<UpdatedBy>sample string 9</UpdatedBy>
<BookingGuid>102ac1db-2eab-4320-99ed-40c3659878a8</BookingGuid>
<EndTime>2025-10-27T14:00:38.867357+00:00</EndTime>
<IsRule>true</IsRule>
<Name>sample string 6</Name>
<OriginalPlacementBookingId>7</OriginalPlacementBookingId>
<RuleType>65</RuleType>
<StartTime>2025-10-27T14:00:38.867357+00:00</StartTime>
</PlacementBookingViewModel>
</Bookings>
<Candidate>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>abdab7e1-91f9-442d-94f4-c60078ab9495</Uid>
<UpdatedBy>sample string 36</UpdatedBy>
<AddressLine1>sample string 5</AddressLine1>
<AddressLine2>sample string 6</AddressLine2>
<AddressLine3>sample string 7</AddressLine3>
<AddressLine4>sample string 8</AddressLine4>
<Area>sample string 25</Area>
<CandidateGuid>766ba1e2-d784-4b6c-b121-dc59f14d7311</CandidateGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<ComplianceExpires>2025-10-27T14:00:38.867357+00:00</ComplianceExpires>
<Country>sample string 10</Country>
<DateOfBirth>2025-10-27T14:00:38.867357+00:00</DateOfBirth>
<EarliestStartDate>2025-10-27T14:00:38.867357+00:00</EarliestStartDate>
<EclipseLastUpdated>2025-10-27T14:00:38.867357+00:00</EclipseLastUpdated>
<EclipseStatus>sample string 27</EclipseStatus>
<Email>sample string 13</Email>
<EmploymentSought>sample string 30</EmploymentSought>
<Forename>sample string 2</Forename>
<Gender>sample string 23</Gender>
<IsPrimaryIndustryDiscipline>true</IsPrimaryIndustryDiscipline>
<Latitude>1.1</Latitude>
<Location>sample string 24</Location>
<Longitude>1.1</Longitude>
<MaxAnnualSalary>32.1</MaxAnnualSalary>
<MaxHourlyPayrate>34.1</MaxHourlyPayrate>
<MinAnnualSalary>31.1</MinAnnualSalary>
<MinHourlyPayrate>33.1</MinHourlyPayrate>
<Mobile>sample string 12</Mobile>
<Nationality>sample string 29</Nationality>
<OtherNames>sample string 4</OtherNames>
<PersonalStatement>sample string 21</PersonalStatement>
<Position>sample string 14</Position>
<PostCode>sample string 9</PostCode>
<PrimaryDiscipline>sample string 18</PrimaryDiscipline>
<PrimaryIndustry>sample string 17</PrimaryIndustry>
<PrimarySubDiscipline>sample string 19</PrimarySubDiscipline>
<ReferenceNumber>sample string 16</ReferenceNumber>
<ReferralSource>sample string 22</ReferralSource>
<Region>sample string 26</Region>
<Surname>sample string 3</Surname>
<Telephone>sample string 11</Telephone>
<Term>sample string 15</Term>
<Title>sample string 1</Title>
</Candidate>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientContact>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>57453b80-f10e-405e-b0fa-08557a66c75e</Uid>
<UpdatedBy>sample string 25</UpdatedBy>
<CanEditClient>true</CanEditClient>
<CanTimesheetAnyApprove>true</CanTimesheetAnyApprove>
<CanTimesheetAnyApproveAndAuthorise>true</CanTimesheetAnyApproveAndAuthorise>
<CanTimesheetAnyAuthorise>true</CanTimesheetAnyAuthorise>
<CanTimesheetAnyReject>true</CanTimesheetAnyReject>
<CanTimesheetAnySubmit>true</CanTimesheetAnySubmit>
<CanTimesheetAnyView>true</CanTimesheetAnyView>
<CanTimesheetNotificationOverride>true</CanTimesheetNotificationOverride>
<CanTimesheetOwnApprove>true</CanTimesheetOwnApprove>
<CanTimesheetOwnApproveAndAuthorise>true</CanTimesheetOwnApproveAndAuthorise>
<CanTimesheetOwnAuthorise>true</CanTimesheetOwnAuthorise>
<CanTimesheetOwnReject>true</CanTimesheetOwnReject>
<CanTimesheetOwnSubmit>true</CanTimesheetOwnSubmit>
<CanTimesheetOwnView>true</CanTimesheetOwnView>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientContactGuid>13b692a5-e1f3-43e2-ab58-4b00949c406c</ClientContactGuid>
<ClientSite>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>70753cf4-be28-41ff-8dbd-0249df120b69</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d9p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientSiteGuid>dde5310b-a2e5-4fbe-916c-cc40e8db51cb</ClientSiteGuid>
<Country>sample string 7</Country>
<Email>sample string 10</Email>
<Fax>sample string 9</Fax>
<Name>sample string 1</Name>
<PostCode>sample string 6</PostCode>
<Telephone>sample string 8</Telephone>
</ClientSite>
<Email>sample string 6</Email>
<Forename>sample string 1</Forename>
<JobTitle>sample string 3</JobTitle>
<Mobile>sample string 5</Mobile>
<Surname>sample string 2</Surname>
<Telephone>sample string 4</Telephone>
<TimesheetNotification>true</TimesheetNotification>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</ClientContact>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Consultant>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>d0a26a82-8735-4e52-b6ff-1272ab7f8bb6</Uid>
<UpdatedBy>sample string 10</UpdatedBy>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<ConsultantGuid>5ce1c62f-dcd6-47c2-b478-e24dfd7270bd</ConsultantGuid>
<Email>sample string 1</Email>
<Forename>sample string 2</Forename>
<JobTitle>sample string 4</JobTitle>
<Mobile>sample string 5</Mobile>
<OtherNames>sample string 6</OtherNames>
<Surname>sample string 3</Surname>
<Telephone>sample string 7</Telephone>
</Consultant>
<EndDate>2025-10-27T14:00:38.867357+00:00</EndDate>
<JobTitle>sample string 3</JobTitle>
<Notes>sample string 4</Notes>
<PlacementGuid>47c1d589-3dd3-4ad2-b5c3-b93cce879044</PlacementGuid>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
<Rates>
<PlacementRateViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>82c633a5-de4c-4526-a129-da39905976ed</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<IsExpense>true</IsExpense>
<Name>sample string 1</Name>
<Pay>2.1</Pay>
</PlacementRateViewModel>
<PlacementRateViewModel>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>82c633a5-de4c-4526-a129-da39905976ed</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<IsExpense>true</IsExpense>
<Name>sample string 1</Name>
<Pay>2.1</Pay>
</PlacementRateViewModel>
</Rates>
<Reference>sample string 1</Reference>
<Site>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>70753cf4-be28-41ff-8dbd-0249df120b69</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientSiteGuid>dde5310b-a2e5-4fbe-916c-cc40e8db51cb</ClientSiteGuid>
<Country>sample string 7</Country>
<Email>sample string 10</Email>
<Fax>sample string 9</Fax>
<Name>sample string 1</Name>
<PostCode>sample string 6</PostCode>
<Telephone>sample string 8</Telephone>
</Site>
<StartDate>2025-10-27T14:00:38.867357+00:00</StartDate>
<Type>sample string 2</Type>
<Vacancy>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>02087b68-53a3-4cf7-be4f-575b8f9a1b1c</Uid>
<UpdatedBy>sample string 22</UpdatedBy>
<Address1>sample string 8</Address1>
<Address2>sample string 9</Address2>
<Address3>sample string 10</Address3>
<Address4>sample string 11</Address4>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientContact>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>57453b80-f10e-405e-b0fa-08557a66c75e</Uid>
<UpdatedBy>sample string 25</UpdatedBy>
<CanEditClient>true</CanEditClient>
<CanTimesheetAnyApprove>true</CanTimesheetAnyApprove>
<CanTimesheetAnyApproveAndAuthorise>true</CanTimesheetAnyApproveAndAuthorise>
<CanTimesheetAnyAuthorise>true</CanTimesheetAnyAuthorise>
<CanTimesheetAnyReject>true</CanTimesheetAnyReject>
<CanTimesheetAnySubmit>true</CanTimesheetAnySubmit>
<CanTimesheetAnyView>true</CanTimesheetAnyView>
<CanTimesheetNotificationOverride>true</CanTimesheetNotificationOverride>
<CanTimesheetOwnApprove>true</CanTimesheetOwnApprove>
<CanTimesheetOwnApproveAndAuthorise>true</CanTimesheetOwnApproveAndAuthorise>
<CanTimesheetOwnAuthorise>true</CanTimesheetOwnAuthorise>
<CanTimesheetOwnReject>true</CanTimesheetOwnReject>
<CanTimesheetOwnSubmit>true</CanTimesheetOwnSubmit>
<CanTimesheetOwnView>true</CanTimesheetOwnView>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d9p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientContactGuid>13b692a5-e1f3-43e2-ab58-4b00949c406c</ClientContactGuid>
<ClientSite>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>70753cf4-be28-41ff-8dbd-0249df120b69</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<Client>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>cd0c0599-8f51-46e9-99e1-be88daf6ccf8</Uid>
<UpdatedBy>sample string 11</UpdatedBy>
<AddressLine1>sample string 1</AddressLine1>
<AddressLine2>sample string 2</AddressLine2>
<AddressLine3>sample string 3</AddressLine3>
<AddressLine4>sample string 4</AddressLine4>
<ClientGuid>a37d2951-795b-4ec2-9324-fab1e791f1fa</ClientGuid>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d9p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d10p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d10p1:Link>
<d10p1:Href>http://webapihelppage1.com/</d10p1:Href>
<d10p1:Method>sample string 2</d10p1:Method>
<d10p1:Rel>sample string 3</d10p1:Rel>
<d10p1:Title>sample string 4</d10p1:Title>
<d10p1:Type>sample string 5</d10p1:Type>
</d10p1:Link>
<d10p1:Link>
<d10p1:Href>http://webapihelppage1.com/</d10p1:Href>
<d10p1:Method>sample string 2</d10p1:Method>
<d10p1:Rel>sample string 3</d10p1:Rel>
<d10p1:Title>sample string 4</d10p1:Title>
<d10p1:Type>sample string 5</d10p1:Type>
</d10p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d9p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
<d9p1:Link>
<d9p1:Href>http://webapihelppage1.com/</d9p1:Href>
<d9p1:Method>sample string 2</d9p1:Method>
<d9p1:Rel>sample string 3</d9p1:Rel>
<d9p1:Title>sample string 4</d9p1:Title>
<d9p1:Type>sample string 5</d9p1:Type>
</d9p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Name>sample string 5</Name>
<PostCode>sample string 6</PostCode>
<ReferenceNumber>sample string 7</ReferenceNumber>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</Client>
<ClientSiteGuid>dde5310b-a2e5-4fbe-916c-cc40e8db51cb</ClientSiteGuid>
<Country>sample string 7</Country>
<Email>sample string 10</Email>
<Fax>sample string 9</Fax>
<Name>sample string 1</Name>
<PostCode>sample string 6</PostCode>
<Telephone>sample string 8</Telephone>
</ClientSite>
<Email>sample string 6</Email>
<Forename>sample string 1</Forename>
<JobTitle>sample string 3</JobTitle>
<Mobile>sample string 5</Mobile>
<Surname>sample string 2</Surname>
<Telephone>sample string 4</Telephone>
<TimesheetNotification>true</TimesheetNotification>
<TimesheetNotificationAddress>sample string 8</TimesheetNotificationAddress>
</ClientContact>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<Consultant>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>d0a26a82-8735-4e52-b6ff-1272ab7f8bb6</Uid>
<UpdatedBy>sample string 10</UpdatedBy>
<Company>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>4b1d3625-9429-4db9-aca0-07a0fb8cd2b3</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>542226d0-aaee-4357-9c85-66db8a9e5a4b</CompanyGuid>
<Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d7p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
<d7p1:Link>
<d7p1:Href>http://webapihelppage1.com/</d7p1:Href>
<d7p1:Method>sample string 2</d7p1:Method>
<d7p1:Rel>sample string 3</d7p1:Rel>
<d7p1:Title>sample string 4</d7p1:Title>
<d7p1:Type>sample string 5</d7p1:Type>
</d7p1:Link>
</Links>
<Uid>fd26c7fa-cb3b-450c-bd8b-7bcd732008c2</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>41e4101d-6215-4924-b2bf-672992586ec7</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d8p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
<d8p1:Link>
<d8p1:Href>http://webapihelppage1.com/</d8p1:Href>
<d8p1:Method>sample string 2</d8p1:Method>
<d8p1:Rel>sample string 3</d8p1:Rel>
<d8p1:Title>sample string 4</d8p1:Title>
<d8p1:Type>sample string 5</d8p1:Type>
</d8p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>f3fdbbff-b584-4368-8cb2-d195a870f0c9</PortalGuid>
<PortalUid>bb4a81e0-6551-41da-a14a-b0ed1aed356b</PortalUid>
<PostCode>sample string 6</PostCode>
</Company>
<ConsultantGuid>5ce1c62f-dcd6-47c2-b478-e24dfd7270bd</ConsultantGuid>
<Email>sample string 1</Email>
<Forename>sample string 2</Forename>
<JobTitle>sample string 4</JobTitle>
<Mobile>sample string 5</Mobile>
<OtherNames>sample string 6</OtherNames>
<Surname>sample string 3</Surname>
<Telephone>sample string 7</Telephone>
</Consultant>
<Country>sample string 12</Country>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Discipline>sample string 6</Discipline>
<Division>sample string 18</Division>
<Duration>sample string 19</Duration>
<EndDate>2025-10-27T14:00:38.867357+00:00</EndDate>
<Industry>sample string 5</Industry>
<JobDescription>sample string 4</JobDescription>
<JobTitle>sample string 3</JobTitle>
<JobType>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>8724c2b1-7816-4192-8158-34715a298cbf</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d6p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
<d6p1:Link>
<d6p1:Href>http://webapihelppage1.com/</d6p1:Href>
<d6p1:Method>sample string 2</d6p1:Method>
<d6p1:Rel>sample string 3</d6p1:Rel>
<d6p1:Title>sample string 4</d6p1:Title>
<d6p1:Type>sample string 5</d6p1:Type>
</d6p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</JobType>
<Latitude>1.1</Latitude>
<Location>sample string 15</Location>
<Longitude>1.1</Longitude>
<Portal>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d5p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
<d5p1:Link>
<d5p1:Href>http://webapihelppage1.com/</d5p1:Href>
<d5p1:Method>sample string 2</d5p1:Method>
<d5p1:Rel>sample string 3</d5p1:Rel>
<d5p1:Title>sample string 4</d5p1:Title>
<d5p1:Type>sample string 5</d5p1:Type>
</d5p1:Link>
</Links>
<Uid>bbeb503c-2394-47fe-b5ed-fae092aa6f60</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
<Postcode>sample string 13</Postcode>
<Rate>1.1</Rate>
<RateFrequency>sample string 17</RateFrequency>
<Reference>sample string 1</Reference>
<Region>sample string 14</Region>
<Salary>sample string 16</Salary>
<StartDate>2025-10-27T14:00:38.867357+00:00</StartDate>
<Status>sample string 2</Status>
<SubDiscipline>sample string 7</SubDiscipline>
</Vacancy>
</Placement>
<ProcessedBy>sample string 10</ProcessedBy>
<ProcessedDate>2025-10-27T14:00:38.867357+00:00</ProcessedDate>
<Reference>sample string 4</Reference>
<RejectedBy>sample string 6</RejectedBy>
<RejectedDate>2025-10-27T14:00:38.867357+00:00</RejectedDate>
<RejectionReason>sample string 5</RejectionReason>
<TimesheetGuid>1a8374d8-a314-4a39-9be3-ce8ed1362f03</TimesheetGuid>
<TimesheetStatus>
<DateUpdated>2025-10-27T14:00:38.867357+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>fc1c16ba-e4d5-41e4-8153-4525caee5bd5</Uid>
<UpdatedBy>sample string 15</UpdatedBy>
<CandidateAlias>sample string 12</CandidateAlias>
<ClientContactAlias>sample string 13</ClientContactAlias>
<IsApproved>true</IsApproved>
<IsAuthorised>true</IsAuthorised>
<IsDefault>true</IsDefault>
<IsInvoiced>true</IsInvoiced>
<IsModified>true</IsModified>
<IsPaid>true</IsPaid>
<IsPending>true</IsPending>
<IsRejected>true</IsRejected>
<IsSubmitted>true</IsSubmitted>
<IsUpdatable>true</IsUpdatable>
<Name>sample string 1</Name>
</TimesheetStatus>
</CandidateTimesheetViewModel>