Timeline API
2 PracBill API endpoints for timeline. Base URL https://billing.pracbill.com.au/api.
Get timeline entries (notes, events) for a specific record
GET /{api_key}/timeline/{module}/{id}
Responses
200— Timeline entries retrieved successfully
Add a timeline entry (note or event) to a record
POST /{api_key}/timeline/{module}/{id}
Request body
| Field | Type | Description |
|---|---|---|
title | string | Entry title |
category required | string (note | event) | Entry type |
description required | string | Entry content/description |
event_date | string | Event date (required if category is 'event') |
event_type | string | Event type (required if category is 'event') |
id | integer | Entry ID (for updates) |
Responses
200— Timeline entry created successfully