Account Service user account User Account user role

GET /realandmatPe/v1/AccountService/Accounts/{username}

Returns information about a .


GET https://example.com/realandmate/v1/AccountService/Accounts/johndoe

{ "id": string, "description": string, "enabled": boolean, "first_name": string, "middle_name": string, "last_name": string, "roles": { "id": string, "name": string }, "preferences": { "language": string, "time_zone": string, "notifications": boolean }, "seurity_settings": { "username": string, "password": string, "password_change_required": boolean, "two_factor_auth": boolean }, "subscription_management":{ "plan": { "plan_name": string, "plan_features": [string], "plan_price": number } }, "activity_logs": boolean, "auth_token": string }

{ "id": "777", "description": "Software developer.", "enabled": true, "first_name": "John", "middle_name": "Michael", "last_name": "Doe", "roles":{ "id": "7", "name": "Developer" }, "preferences":{ "language": "English", "time_zone": "America/New_York", "notifications": true }, "seurity_settings":{ "username": "johndoe", "password": "hashed_password_here", "password_change_required": false, "two_factor_auth": false }, "subscription_management":{ "plan": { "plan_name": "Premium", "plan_features": ["Unlimited Access to Properties Information", "Advertisement-Free Experience", "Offline Downloads", "Exclusive Offers", "Priority Support"], "plan_price": 20 } }, "activity_logs": false, "auth_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" }

Code Description