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

Memberships

All the members in this event

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

GET /catalyst/memberships

Returns members (users) for the event.

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

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • firstname

    • lastname

    • email_address

    • event_checkin_uuid

      • This is the QR code on the Eventication ticket of the member.

Response shape:

{
  "data": [
    {
      "id": 123,
      "firstname": "Ada",
      "lastname": "Lovelace",
      "email_address": "ada@example.com",
      "event_checkin_uuid": "memHBWTxl1v3sGJr0PUmUh4fry8Fx89y"
    },
    ...
  ],
  "meta": {
    "page": 1,
    "per_page": 100,
    "total_pages": 42,
    "total_count": 4199,
    "next_page": 2,
    "prev_page": null
  }
}

Last updated