- 统一接口
- 分管控制台/客服坐席管理
- 客服坐席
- 主控
- 总号池调配
- 注册账号
- 服务器
- 任务观察
- 号商
- 规则设定
- 招呼/营销/推送参数
- 动态发送
- 个人版
- 钱包管理
- 分管
- 菜单管理
- 管理员
- 首页
- IP管理
- 坐席主管
- ip2world
- 拉群
- 消息回调POST
- 重新登录POST
- 协议回调更新手机号状态POST
- 物理IP获取POST
- 提供给协议做调用POST
手动注册---发送验证码
开发中
开发环境
http://localhost:8080
开发环境
http://localhost:8080
POST
/kk/task/sendSmsCode
请求参数
Header 参数
token
string
可选
示例值:
3030a89fc5234a9093e57b570699e85b
Body 参数application/json
phoneNumber
string
手机号
cc
integer
区号
countryCode
string
国家英文简码
isVoice
integer
是否语音
socks5
string
代理ip
示例
{
"phoneNumber": "string",
"cc": 0,
"countryCode": "string",
"isVoice": 0,
"socks5": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8080/kk/task/sendSmsCode' \
--header 'token: 3030a89fc5234a9093e57b570699e85b' \
--header 'Content-Type: application/json' \
--data-raw '{
"phoneNumber": "string",
"cc": 0,
"countryCode": "string",
"isVoice": 0,
"socks5": "string"
}'
返回响应
🟢200成功
application/json
Body
msg
string
必需
code
integer
必需
data
boolean
必需
示例
{
"msg": "操作成功",
"code": 200,
"data": true
}
修改于 2023-07-07 14:28:58