Auth APIs/Push Notifications
List My Push Tokens
GET
/auth/push-tokens/meList all push tokens registered for the current user.
Bearer token required
Content-Type:
application/jsonResponse Example
200 OK
{
"action": true,
"data": [
{
"id": 1,
"platform": "android",
"deviceId": "device-uuid-123",
"lastSeenAt": "2026-03-08T10:00:00Z",
"createdAt": "2026-03-01T08:00:00Z",
"isActive": true,
"tokenLast10": "...K7fMr9abc"
}
]
}Code Examples
curl -X GET 'https://<your-domain>:3001/auth/push-tokens/me' \
-H 'Authorization: Bearer <token>'Try It
API Playground
Sends a real request to the configured server