# Confirm Register Confirm and complete the user registration process after OTP verification. Updates user record with final details and activates the account. Endpoint: POST /wp/confirm/register Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `name` (string, required) Full name of the user. Example: "Bikramjeet Singh" - `country_code` (string, required) Country code in E.164 format. Example: "+91" - `user_code` (integer, required) Unique user identification code. Example: 5630 - `mobile` (string, required) Mobile number without country code. Example: "62839xxxxx" - `device_token` (string, required) Push notification device token. Example: "123456" - `imei` (string, required) Device IMEI or unique device identifier. Example: "ED9F012A-3991-4BF5-83EB-685F56FA57B7" - `email` (string, required) User's email address. Example: "example@ivalt.com" - `platform` (string, required) Device platform (iOS, Android, etc.). Enum: "iOS", "Android", "ios", "android" ## 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"