For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportDeel Home
OverviewPlatformEmployer of RecordContractorsGlobal PayrollHREmbeddedDeel ITAPI ReferenceChangelog
OverviewPlatformEmployer of RecordContractorsGlobal PayrollHREmbeddedDeel ITAPI ReferenceChangelog
  • Resources
    • Blog
    • Community
  • Overview
    • Introduction
    • Getting started
  • Employer of Record
    • Overview
    • Hiring & contracts
    • Employment management
    • Amendments & offboarding
    • Worker onboarding
    • Worker self-service
  • Independent Contractor
    • Overview
    • Create & onboard
    • Manage contracts
  • EOR Endpoints
  • EOR Worker Endpoints
  • IC Endpoints
      • POSTCreate a timesheet entry
      • GETList of timesheets
      • GETList of timesheets by contract
      • GETRetrieve a single timesheet entry
      • POSTReview a single timesheet
      • PATCHUpdate a timesheet entry
LogoLogo
SupportDeel Home
IC EndpointsTimesheets

Retrieve a single timesheet entry

GET
/timesheets/:id
GET
/rest/v2/timesheets/:id
$curl https://api.letsdeel.com/rest/v2/timesheets/id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": {
3 "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
4 "type": "work",
5 "status": "approved",
6 "contract": {
7 "id": "contract_987654321",
8 "type": "ongoing_time_based",
9 "title": "Senior Software Engineer Contract"
10 },
11 "quantity": 38.5,
12 "worksheet": {
13 "days": 5,
14 "hours": 40,
15 "weeks": 1,
16 "minutes": 0
17 },
18 "attachment": {
19 "key": "attachments/2024/04/timesheet_12345.pdf",
20 "filename": "timesheet_april_2024.pdf"
21 },
22 "created_at": "2024-04-10T14:22:00Z",
23 "description": "Timesheet for week 14, 2024",
24 "reported_by": {
25 "id": "user_123456",
26 "full_name": "Jane Doe"
27 },
28 "reviewed_by": {
29 "id": "manager_78910",
30 "remarks": "Approved without issues",
31 "reviewed_at": "2024-04-12T09:15:00Z",
32 "full_name": "John Smith"
33 },
34 "total_amount": "3850.00",
35 "currency_code": "USD",
36 "date_submitted": "2024-04-10T14:20:00Z",
37 "approvers": [
38 {
39 "approved": true,
40 "email": "manager.john.smith@company.com",
41 "full_name": "John Smith"
42 }
43 ],
44 "scale": null,
45 "custom_scale": null,
46 "payment_cycle": {
47 "end_date": "2024-04-14T23:59:59Z",
48 "start_date": "2024-04-08T00:00:00Z"
49 },
50 "hourly_report_preset": {
51 "id": "preset_001",
52 "rate": 100,
53 "title": "Standard Hourly Rate",
54 "description": "Standard hourly rate for software engineering tasks"
55 }
56 }
57}

Returns a single timesheet entry. Token scopes: timesheets:read

Was this page helpful?
Previous

Review a single timesheet

Next
Built with

Authentication

AuthorizationBearer

Authentication

The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.

1curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \
2 -H 'Authorization: Bearer YOUR-TOKEN-HERE'

Learn more about authentication

OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/

Path parameters

idstringRequired
ID of an existing timesheet

Response

Successful operation.
dataobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error

Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/