Events

Manage calendar events. Ability to create, edit, view, and delete events.

Available Endpoints

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

Example Request

curl -X GET "https://example.com/api/events" \
  -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...