(下行接口)合作方增加会员积分
授权方式:门店授权
HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI: /open/v1/crm/point/add
详情可查看【公共说明】中的公共参数模块
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
customerId | Long | 是 | 顾客Id |
points | Integer | 是 | 增加积分值 |
remark | String | 是 | 备注 |
businessType | Integer | 是 | 业务类型;目前只有4:积分补录 |
{
"businessType": 4,
"customerId": 0,
"points": 0,
"remark": "string"
}
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
code | Int | 是 | 返回编码,详见错误码 |
message | String | 是 | 返回信息 |
messageUuid | String | 是 | 消息uuid |
result | MemberPointOperateResultVO | 是 | 返回响应数据,json对象或数组,可空 |
MemberPointOperateResultVO
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
currentPoints | Integer | 是 | 当前剩余积分 |
{
"code": 0,
"message": "string",
"messageUuid": "string",
"result": {
"currentPoints": 0
}
}