帮助中心

1239-查询会员购卡信息

2021-08-23

1239-付费卡购卡信息查询

接口说明:

获取付费卡购卡信息。

查询入参时间范围不能超过24小时


请求说明:

HTTP请求方式:POST

返回数据格式:JSON

请求路径:api/pbase/GetPayCardPageList

返回参数:

字段类型描述
TradeNostring支付订单号
RefundMoneydouble禁用时退款金额
Statusstring1:使用中2:待使用3:已过期4:手工调整5已禁用
IsRecruitVipbool是否招募会员false否true是
ServiceChannelIdint服务门店Id
ServiceChannelCodestring服务门店Code
MobileNostring手机号
OldCodestring会员线下卡号
Codestring会员卡号
PayTypeNamestring支付方式
OriginalPricedouble原价
Pricedouble售价
CardTypeFullNamestring有效期
Namestring等级
PayTimestring付款时间
DistributionShopIdint购卡门店id
DistributionShopNamestring购卡门店名称
DistributionSalerint售卡导购ID
DistributionSalerNamestring售卡导购名称
LastModifiedDatestring更新时间


请求参数示例代码(json对象):

{
   "PageIndex":"1",
   "PageSize": "20",
   "OldCode":"ezr20210823001",

   "StartDate":"2021-07-22 08:00:00",
   "EndDate":"2021-07-22 12:00:00",
}

系统级返回结果示例(json):

{
   "Status": true,
   "StatusCode": 200,
   "Msg": "成功",
   "Timestamp": "20150622093101",
   "Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E",
   "Result": 见业务返回结果示例,
}

业务返回结果示例(json):

[{
     "RefundMoney": 0,
     "Status": "使用中",
     "TradeNo": "4200000713202007215839202182",
     "IsRecruitVip": false,
     "ServiceChannelId": 2484280,
     "ServiceChannel": "NIKE",
     "MobileNo": "",
     "OldCode": "",
     "Code": "",
     "PayTypeName": "微信支付",
     "OriginalPrice": 0,
     "Price": 0.01,
     "CardTypeFullName": "半年卡(6个月)",
     "Name": "付费卡红卡",
     "PayTime": "2020-07-21 10:21:06",
     "DistributionShopId": 0,
     "DistributionShopName": "",
     "DistributionSaler": 0,
     "DistributionSalerName": ""
},{.......}]



1352