短信发送
- 接口说明: 短信发送
- 接口地址: /sms/send
- 请求方式: POST
请求参数
参数名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
mobile | string | 是 | 手机号码 |
type | string | 是 | 类型说明: login 登录 bind 绑定手机号 rebind 重绑手机号 reset_pwd 重设登录密码 reset_pay_pwd 重设支付密码 verify 验证手机号是否为当前用户(可不传手机号,但必须传 Token) |
captcha_ticket | string | 否 | 开启腾讯云验证码服务时,前端回调函数返回的用户验证票据 |
captcha_rand_str | string | 否 | 开启腾讯云验证码服务时,前端回调函数返回的随机字符串 |
请求示例
{
"data": {
"attributes": {
"mobile": "186****5678",
"type": "login"
}
}
}
返回说明
- 创建成功, http 状态码: 200
返回结果
参数名称 | 类型 | 出现要求 | 描述 |
---|---|---|---|
type | string | 数据模型的类型 | |
id | int | 分类 id | |
attributes | object | 数据模型的属性 | |
attributes.interval | int | 间隔时间 |
返回示例
{
"data": {
"type": "smssend",
"id": "1",
"attributes": {
"interval": 60
}
}
}