For the complete documentation index, see llms.txt. This page is also available as Markdown.

Work shifts

Who works what job

This endpoint requires the work_shifts access to be enabled in the Catalyst integration settings.

GET /catalyst/work_shifts

Returns shifts for the event. A shift links a member to a job.

  • URL: https://api.eventication.com/catalyst/work_shifts?page=1

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • work_job_id — references an item from work_jobs

    • membership_id — references an item from memberships

Response shape:

{
  "data": [
    {
      "id": 444,
      "work_job_id": 987,
      "membership_id": 123
    },
    ...
  ],
  "meta": {
    "page": 1,
    "per_page": 100,
    "total_pages": 5,
    "total_count": 412,
    "next_page": 2,
    "prev_page": null
  }
}

Last updated