文档
测试

注册用户

POST
https://shop.szpdc.com/api/shop/register

请求头

参数名
类型
描述
必填
Content-Type
string
示例:application/json
必填

请求参数

参数名
类型
描述
必填
name
string
名称,示例:李讯络
必填
password
string
密码,示例:phone0973
必填
email
string
邮箱,示例:291340703@qq.com
必填
login
string
用户名,示例:lixl1
必填
phone
string
手机号,示例:13392466525
必填
code
string
验证码,示例:9851
必填
identity
string
身份密钥,示例:abcd1234
必填

响应参数

参数名
类型
描述
必填
jsonrpc
string
示例:2.0
必填
id
object
示例:null
必填
result
object
数据字典
必填
state
string
示例:success,failed
必填
msg
string
示例:注册成功,注册失败或者失败的原因
必填
result
object
数据字典,失败不返回
必填
id
int
示例:3
必填

说明 / 示例

```json { "jsonrpc": "2.0", "id": null, "result": { "state": "success", "msg": "注册成功", "result": { "id": 3 } } } ```