# Get User Retrieve user details and profile information by mobile number. Endpoint: POST /getuser Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `mobile` (string, required) Mobile number to retrieve user details for. Example: "62839xxxxx" ## Response 200 fields (application/json): - `status` (string, required) Outcome of the request. Example: "success" - `message` (string, required) Summary of the result. Example: "User details" - `data` (object, required) - `data.name` (string) Example: "Bikramjeet Singh" - `data.email` (string) Example: "bikramjeet@ivalt.com" - `data.mobile` (string) Example: "62839xxxxx" - `data.country_code` (string) Example: "+91" - `data.enrolled` (boolean) Example: true ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters"