Update a time entry
Headers
-
Content-Type string
-
Accept string
Path parameters
-
The ID of the time entry.
Body Required
-
The type of the model that is being tracked.. Valid types are: client, board_task, case, firm, task
-
The UUID of the model that is being tracked
-
name string
The name of the time entry.
-
start_date date
The start time of the time entry.
-
end_date date
The end time of the time entry.
-
total_time_in_minutes integer
The length of the time entry, can be used instead of dates.
PUT /api/v1/time-entry/{id}
curl \
-X PUT https://api.plannrcrm.com/api/v1/time-entry/id \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"trackable_type":"Client","trackable_uuid":"24c78fe4-79a7-4a77-9c97-fd9b211d24d0","name":"Research","start_date":"2024-11-20T12:39:02+00:00","end_date":"2024-11-20T13:24:02+00:00","total_time_in_minutes":200}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"trackable_type": "Client",
"trackable_uuid": "24c78fe4-79a7-4a77-9c97-fd9b211d24d0",
"name": "Research",
"start_date": "2024-11-20T12:39:02+00:00",
"end_date": "2024-11-20T13:24:02+00:00",
"total_time_in_minutes": 200
}
Response examples (200)
{
"name": "Research",
"uuid": "9bba6c76-7dda-470e-8f09-58dffdc79081",
"end_date": "2024-11-20T13:24:02+00:00",
"is_active": "1",
"trackable": "Client",
"start_date": "2024-11-20T13:24:02+00:00"
}