Rensei docs
API ReferenceNotifications

Register (or refresh) a push device token for the authenticated user.

Upserts a per-user APNs or web-push device token. The write is scoped to the authenticated user; a credential with no user identity is rejected. Re-registering a live token bumps last-seen and refreshes its mutable fields.

POST
/api/notifications/devices

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/notifications/devices" \  -H "Content-Type: application/json" \  -d '{    "platform": "apns",    "token": "string"  }'
{
  "id": "string"
}
Empty
Empty
Empty