# Sms sms method - [/notify.Sms/Send](#notifysmssend) - [/notify.Sms/Verify](#notifysmsverify) ## /notify.Sms/Send ### Request ```javascript { sign_name: "", // type, 必传项 template_code: "", // type, 必传项 phone: "", // type, 必传项 paramters: { "": "" }, // map // 验证码相关 generate_code: false, // type, 是否生成验证码 expire_interval: "0", // type, 验证码缓存时间,单位:分钟,仅generate_code为true时会缓存,默认5分钟 code_width: "0", // type, 验证码长度,默认 4 code_key: "", // type, template_code 模板中验证码的标识,默认code has_black_list_filter: false, // type, 是否黑单过滤,默认不过滤 wihout_limit: false, // type, 忽略每天短信条数上线限制,默认不忽略 } ``` ### Reply ```javascript { // string request_id = 1; biz_id: "", // type } ``` ## /notify.Sms/Verify ### Request ```javascript { // string request_id = 1; phone: "", // type code: "", // type } ``` ### Reply ```javascript { pass: false, // type } ```