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
    • data array[object]

      Additional properties are allowed.

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": "e7f3f310-96e4-4f42-9beb-1098589d550d",
      "end_date": "2024-11-20T13:24:00+00:00",
      "is_active": "1",
      "trackable": "Client",
      "start_date": "2024-11-20T13:24:00+00:00"
    }
  ]
}