# Send OTP SMS Send an OTP (One-Time Password) via SMS to the specified mobile number. Used for mobile verification during registration or authentication flows. Endpoint: POST /wp/send/sms Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `mobile` (string, required) Mobile number to receive OTP. Example: "+9162839xxxxx" ## 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"