GET
/api/im/remote/push/tokens
List current user's push tokens
List APNs/FCM push tokens registered for the authenticated user. Token values are
returned verbatim — they belong to the caller behind an auth-gated endpoint.
当前语言暂无代码示例
响应示例
{
"ok": true,
"data": {
"tokens": [
{
"id": "tok_01",
"platform": "apns",
"token": "abc123devicetoken",
"deviceId": "iphone-device-uuid",
"createdAt": "2026-04-19T09:00:00Z"
}
]
}
}