Flambe docs
API referencePush tokens

List my registered devices

GET
/api/push-tokens/me

Authorization

bearerAuth
AuthorizationBearer <token>

A Clerk session JWT. Obtain one with a Clerk frontend SDK (session.getToken()) or, for server-to-server use, with a Clerk machine token. The token's sub claim is the Flambe user id that scopes every request.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/push-tokens/me"
{  "tokens": [    {      "token": "string",      "platform": "ios",      "device_id": "string",      "device_name": "string",      "device_type": "string",      "app_version": "string",      "app_build": "string",      "session_id": "string"    }  ]}