List push devices

GET/push/devices

List the push devices the authenticated user registered through this app, newest first. Disabled devices are excluded.

AuthLogin required

Response

FieldTypeDescription
devicesPushDevice[]Devices.
Request
curl https://api.4s.link/push/devices \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"devices": [
{
"id": "b7c1a2d3-...",
"tokenMasked": "...9fA2xQ",
"platform": "IOS",
"clientId": "a1b2c3d4-...",
"locale": "ja",
"lastUsedAt": "2026-08-18T10:12:00.000Z",
"createdAt": "2026-08-18T09:00:00.000Z",
"updatedAt": "2026-08-18T10:12:00.000Z"
}
]
}