Skip to main content
POST
/
api
/
hris
/
v1
/
timesheet-entry
Create Timesheet
curl --request POST \
  --url https://api.bindbee.dev/api/hris/v1/timesheet-entry \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-connector-token: <x-connector-token>' \
  --data '
{
  "employee": "018abccc-4a0a-7e7d-a9d7-56881f57a6b4",
  "date": "2023-11-10",
  "start_time": "2023-11-10T00:00:00Z",
  "end_time": "2023-11-10T00:00:00",
  "hours_worked": 12,
  "break_duration": 30
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}
This endpoint creates a Timesheet Entry in the connected HRIS via Bindbee’s unified Time Sheet Entry model.

Provider-specific behavior

Different HRIS systems can have slightly different requirements and behaviors when creating timesheet entries. Use the accordions below to see details for each provider.

When the underlying HRIS is Bamboo HR, a Timesheet Entry can be created using a payload like:

{
  "employee": "019ab506-66a2-7f6e-b8da-09d3579a534e",
  "date": "2025-11-24",
  "start_time": "2025-11-24T08:00:00Z",
  "end_time": "2025-11-24T17:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-connector-token
string
required

Body

application/json
employee
string<uuid>
required

The employee the timesheet entry is for.

Example:

"018abccc-4a0a-7e7d-a9d7-56881f57a6b4"

date
string
required

The date the time was logged.

Example:

"2023-11-10"

start_time
string
required

The day and time of the start of the time requested off.

Example:

"2023-11-10T00:00:00Z"

end_time
string
required

The day and time of the end of the time requested off.

Example:

"2023-11-10T00:00:00"

hours_worked
default:0

The number of hours logged by the employee.

Example:

12

break_duration
number
default:0

The number of hours the employee took for a break.

Example:

30

Response

Successful Response