v18.2
Notifuse/notifusev18.2Nov 29, 2025by pierre-b
AI Summary
This is a maintenance release that standardizes custom events API endpoints from singular to plural naming convention for consistency with other API endpoints in the system. Users must update any existing API integrations to use the new endpoint names.
Key Highlights
- API endpoint naming consistency improvement for custom events
- Custom events endpoints renamed from singular (customEvent) to plural (customEvents)
- Four API endpoints affected: upsert, import, get, and list
- Endpoint consistency aligned with other API endpoints in the platform
Breaking Changes
- POST /api/customEvent.upsert renamed to POST /api/customEvents.upsert
- POST /api/customEvent.import renamed to POST /api/customEvents.import
- GET /api/customEvent.get renamed to GET /api/customEvents.get
- GET /api/customEvent.list renamed to GET /api/customEvents.list
Full Release Notes
## v18.2 Release Notes ### API Endpoint Naming Consistency Custom events API endpoints have been renamed from singular to plural form for consistency with other API endpoints: | Old Endpoint | New Endpoint | |-------------|--------------| | `POST /api/customEvent.upsert` | `POST /api/customEvents.upsert` | | `POST /api/customEvent.import` | `POST /api/customEvents.import` | | `GET /api/customEvent.get` | `GET /api/customEvents.get` | | `GET /api/customEvent.list` | `GET /api/customEvents.list` | **Action Required**: Update any API integrations using the old endpoint names.