Timeline

Manage project timeline. This module allows recording and viewing project events and activities in a timeline format.

Available Endpoints

Method Path Description
GET /api/timeline List timeline events
POST /api/timeline Create new event
GET /api/timeline/{id} View event details
PUT /api/timeline/{id} Full update of an event
PATCH /api/timeline/{id} Partial update of an event
DELETE /api/timeline/{id} Delete an event

Example Request

curl -X GET "https://example.com/api/timeline" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "records": [],
  "meta": {
    "total": 0,
    "current_page": 1,
    "per_page": 20
  }
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...