SnozeDevelopers
API referenceNotifications

Read the caller's push registration for an installation

Returns the caller's active push registration for one app installation — platform, app and project ids, a fingerprint of the token, and when it was last registered — or null when none is active. The raw Expo token is never returned. Requires a Clerk session with a synced profile; API keys are rejected.

GET
/v1/me/push-devices/{installationId}
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

installationId*string
Match^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|[fF]{8}-[fF]{4}-[fF]{4}-[fF]{4}-[fF]{12})$
Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/me/push-devices/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "data": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "installationId": "7a1bf939-4d70-4439-9ced-a3dbbce12bd7",    "platform": "ios",    "appId": "string",    "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",    "tokenFingerprint": "string",    "registeredAt": "string"  }}