# Update Profile Update user profile information such as name and contact details. Endpoint: POST /update-profile Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `name` (string, required) Updated full name of the user. Example: "Bikramjeet Singh" - `country_code` (string, required) Country code. Example: "+91" - `mobile` (string, required) Mobile number without country code. Example: "62839xxxxx" ## Response 200 fields (application/json): - `status` (string, required) Indicates request success. Always success in this schema. Example: "success" - `message` (string, required) Short description of the successful operation outcome.. Example: "Operation completed successfully" ## 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"