Register Device Token

POST

/v1/devices

Registers a mobile device or web browser push token for the authenticated user to receive real-time notifications for assigned conversations and mentions.

Parameters

NameTypeDescription
tokenrequiredstringDevice push token string (FCM or APNS)
platformstringDevice platform: 'fcm', 'apns', 'ios', 'android', 'push'
namestringDevice model / name

Responses

200Device registered successfully
{
  "data": {
    "id": "dev_442",
    "name": "iPhone 15 Pro",
    "platform": "apns",
    "created_at": "2026-09-02T12:00:00Z"
  }
}