Admin Users
Get user by Firebase UID
Retrieve a specific user by their Firebase UID. Useful for resolving web users to app users.
get/admin/users/by-firebase-uid/{firebaseUid}
Path parameters
firebaseUidstring required
Example:abc123firebaseUid
Firebase User ID
Response
User retrieved successfully
Example response
{
"user": {
"id": "user-uuid-here",
"firebaseUserId": "firebase-user-id",
"email": "user@example.com",
"phoneNumber": "+1234567890",
"timezone": "America/Los_Angeles",
"language": "en-US",
"name": "Jane Doe",
"fcmToken": "fcm-token-here",
"appAccountToken": "app-account-token",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T00:00:00Z",
"isSubscribed": true,
"autoRenewal": true,
"subscriptionSource": "stripe"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.