# 抽奖

# 增加抽奖机会

TIP

根据手机号给用户赠送抽奖机会

接口地址:https://openapi10.mallcoo.cn/Lottery/V1/Chance/Add/ (opens new window)
请求类型:POST
数据格式:application/json; charset=utf-8
参数类型:JSON

# 接口调用参数

名称 数据类型 必填 说明
Mobile string 手机号
BiID long 抽奖ID
Count int 需增加的机会数量

# 调用示例


{
  "Mobile": 19911111111,
  "BiID": 1565,
  "Count": 2,
}

1
2
3
4
5
6
7

# 返回结果

名称 数据类型 必填 说明
Code int 状态码
Message string 返回状态描述

# 返回示例


{
  "Code": 1,
  "Message": "成功"
}

1
2
3
4
5
6



# 扣减抽奖机会

TIP

根据手机号扣减用户抽奖机会

接口地址:https://openapi10.mallcoo.cn/Lottery/V1/Chance/Reduce/ (opens new window)
请求类型:POST
数据格式:application/json; charset=utf-8
参数类型:JSON

# 接口调用参数

名称 数据类型 必填 说明
Mobile string 手机号
BiID long 抽奖ID
Count int 需扣减的机会数量

# 调用示例


{
  "Mobile": 19911111111,
  "BiID": 1565,
  "Count": 2,
}

1
2
3
4
5
6
7

# 返回结果

名称 数据类型 必填 说明
Code int 状态码
Message string 返回状态描述

# 返回示例


{
  "Code": 1,
  "Message": "成功"
}

1
2
3
4
5
6



# 查询抽奖机会

TIP

根据手机号查询用户抽奖机会

接口地址:https://openapi10.mallcoo.cn/Lottery/V1/Chance/Get/ (opens new window)
请求类型:POST
数据格式:application/json; charset=utf-8
参数类型:JSON

# 接口调用参数

名称 数据类型 必填 说明
Mobile string 手机号
BiID long 抽奖ID

# 调用示例


{
  "Mobile": 19911111111,
  "BiID": 1565,
}

1
2
3
4
5
6

# 返回结果

名称 数据类型 必填 说明
Code int 状态码
Data Json 返回数据
Message string 返回状态描述
# Data
名称 数据类型 必填 说明
Count long 剩余抽奖次数
# 返回示例

{
  "Code": 1,
  "Data":
  {
   "Count":198
  },
  "Message": "成功"
}

1
2
3
4
5
6
7
8
9
10
Last Updated: 2019/10/15 上午11:34:20