## Get a user by ID **get** `/users/{id}` Retrieve detailed information about a specific user ### Path Parameters - `id: string` ### Returns - `User object { id, created_at, email, 3 more }` - `id: string` Unique identifier with user_ prefix - `created_at: string` Timestamp when the user was created - `email: string` Email address of the user - `first_name: string` First name of the user - `last_name: string` Last name of the user - `updated_at: string` Timestamp when the user was last updated ### Example ```http curl https://$WITHLUMINARY_SUBDOMAIN.withluminary.com/api/public/v1/users/$ID ``` #### Response ```json { "id": "user_01ARZ3NDEKTSV4RRFFQ69G5FAV", "created_at": "2024-01-15T09:30:00Z", "email": "jane.doe@example.com", "first_name": "Jane", "last_name": "Doe", "updated_at": "2024-01-20T14:45:00Z" } ```