Time

Create bulk

POST
/api/public/v3/time/timesheet_entries/bulk

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/api/public/v3/time/timesheet_entries/bulk" \  -H "Content-Type: application/json" \  -d '{    "data": [      {        "employee_id": 0,        "entries": [          {            "starts_at": 0,            "ends_at": 0          }        ]      }    ]  }'
{  "records": {    "count": 0,    "data": [      {        "employee_id": 0,        "project_id": null,        "timesheet_entry_id": 0      }    ]  },  "errors": {    "count": 0,    "data": [      null    ]  }}