发验证码
发验证码应用
-----------
### 客服收发验证码
#### 接口功能
> 客服使用该接口收发验证码
#### 接口名
> /api/v1/service/SMS_sent
#### 支持格式
> JSON
#### HTTP请求方式
> POST
#### 请求头
|参数|必选|类型|说明|
|:----- |:-------|:-----|----- |
|token|true |string|客服token |
#### 请求参数
|参数|必选|类型|说明|
|:----- |:-------|:-----|----- |
|inputKefuid|true |Long|客服id |
|phone|false|String|电话号码|
|new_phone|false|String|新电话号码|
|SMS_messega|false|String|短信验证|
#### 返回字段
|返回字段|字段类型|说明 |
|:----- |:------|:----------------------------- |
|code| int |返回状态码。200:正常;100:错误 |
|msg | string |消息 |
|data| string |短信验证码 |
请求体
```json
{
"inputKefuid":"202114",
"phone":"123421351435",
"new_phone":"",
"SMS_messega":""
}
```
响应体
```json
{
"code": 200,
"msg": "success",
"data": "2413"
}
```
```json
{
"code" : 100,
"msg" : "校验失败",
}
```