Delete a time entry

DELETE /api/v1/time-entry/{id}

Headers

Path parameters

  • id string Required

    The ID of the time entry.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the time entry.

    • The model that is being tracked.

    • name string

      The name of the time entry.

    • The start time of the time entry.

    • end_date string

      The end time of the time entry.

    • Determines if the time entry is currently ongoing.

DELETE /api/v1/time-entry/{id}
curl \
 -X DELETE 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"
Response examples (200)
{
  "name": "Research",
  "uuid": "27f1394f-4fcf-4b89-93d2-95581bc021d4",
  "end_date": "2024-10-16T11:10:15+01:00",
  "is_active": "1",
  "trackable": "Client",
  "start_date": "2024-10-16T11:10:15+01:00"
}