SimplaixSimplaix Gateway
Reference

Notifications

Device registration endpoints for push notifications.

Endpoint Map

MethodPathAuthPurpose
POST/api/v1/notifications/devicesFlexible authRegister or reactivate device
GET/api/v1/notifications/devicesFlexible authList active devices for current user
DELETE/api/v1/notifications/devices/:idFlexible authRemove device

Register Device

POST /api/v1/notifications/devices
Authorization: Bearer <jwt>
Content-Type: application/json

{
  "platform": "ios",
  "pushToken": "<apns-or-fcm-token>",
  "deviceName": "iPhone 16"
}

platform must be ios, macos, or android.

List Devices

GET /api/v1/notifications/devices
Authorization: Bearer <jwt>

Remove Device

DELETE /api/v1/notifications/devices/:id
Authorization: Bearer <jwt>

On this page