Stop a time entry

POST /api/v1/time-entry/{timeEntry_uuid}/stop

Headers

Path parameters

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.

POST /api/v1/time-entry/{timeEntry_uuid}/stop
curl \
 -X POST https://api.plannrcrm.com/api/v1/time-entry/timeEntry_uuid/stop \
 -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": "78893f58-0b8d-495a-b862-5d5f30859a16",
  "end_date": "2024-10-16T11:10:15+01:00",
  "is_active": "1",
  "trackable": "Client",
  "start_date": "2024-10-16T11:10:15+01:00"
}