Get all time entries for a client

GET /api/v1/client/{client_uuid}/all-time-entries

Includes time entries within the client account, cases, and tasks.

Query parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/client/{client_uuid}/all-time-entries
curl \
 -X GET https://api.plannrcrm.com/api/v1/client/client_uuid/all-time-entries \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Research",
      "uuid": "901257d5-e97e-4f05-a326-1ad73beb20a2",
      "end_date": "2024-10-16T11:10:14+01:00",
      "is_active": "1",
      "trackable": "Client",
      "start_date": "2024-10-16T11:10:14+01:00"
    }
  ]
}