POST
/
timmi-timesheet
/
api
/
timesheets
/
submit
curl --request POST \
  --url https://{host}/timmi-timesheet/api/timesheets/submit \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ownerId": 90,
  "startsAt": "2024-05-06T00:00:00",
  "endsAt": "2024-05-13T00:00:00",
  "transfers": []
}'
[
  {
    "id": 123,
    "exceptionMessage": "<string>",
    "startsOn": "2023-12-25",
    "endsOn": "2023-12-25",
    "expectedNextActor": {},
    "status": "<string>"
  }
]

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Body

application/json

The body is of type object.

Response

200
application/json

OK

The response is of type object[].