Time

Create timesheet entry

POST
/api/public/v3/time/timesheet_entries

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/public/v3/time/timesheet_entries" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'employee_id=string&starts_at=string&ends_at=string'
{  "data": {    "id": 0,    "employee_id": 0,    "project_id": 0,    "starts_at": "string",    "ends_at": "string",    "date": "string",    "minutes": 0,    "type": "string",    "comment": "string"  }}