API接口文档/2.9 消息服务/2.9.1 消息查询服务
在线测试
2.9.1 消息查询服务

该接口支持查询各类型消息

请求方式/参数格式
POST/JSON
请求URL
https://域名/getMessagePool
请求入参说明
参数名称 必填 类型 长度 示例值
token String 100 授权接口获取的access token
type int 消息类型:2 商品价格变更; 4 商品上下架变更;5 订单已完成;6 添加、删除商品池内的商品;10 订单取消,不区分取消原因;12 配送单生成成功消息;16 商品介绍及规格参数变更;18 退换货审批消息;34 结算单开票消息
返回结果
名称 类型 必填 备注
success boolean true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因
result Array 数据对象,数据节点
错误码
错误码 错误描述 解决方案
ERR-000603 消息类型不能为空
ERR-000604 消息类型值不在约定值里面
ERR-000606 消息类型值不是数字
请求示例
{
  "token":"cb0bd9f8-ae67-4365-b14d-566ee96886a8",
  "type": 12
}
			
返回示例
(1)	type=2 商品价格变更
{
  "success": true,
  "result": [
    {
      "id":推送id,
      "result":{
        "skuId": 商品编号,
        "state": 1,
        "price": 100.00,
        "market_price": 110.00
      },
      "type" : 2,
      "time":推送时间
    }
  ]
}

(2)	type=4 代表商品上下架变更消息
{
  "success": true,
  "result": [
    {
      "id":推送id,
      "result":{
        "skuId": 商品编号 ,
        "state":"1 上架,2下架
      },
      "type" : 4,
      "time":推送时间
    }
  ]
}

(3)	type=5 订单已完成
{
  "result": [
    {
      "result": {
        "orderType": 1,
        "orderId": "LINK20190808340000001",
        "state": "1"
      },
      "id": 347626,
      "time": "2019-08-08 14:51:15",
      "type": "5"
    }
  ],
  "success": true
}

(4)	type=6 代表添加、删除商品池内的商品
{
  "success": true,
  "result": [
    {
      "id":推送id,
      "result":{
        "skuId": 商品编号 ,
        "state":"1添加,2删除
      },
      "type" : 6,
      "time":推送时间
    }
  ]
}

(5)	type=10 代表订单取消,不区分取消原因
{
  "success": true,
  "result": [
    {
      "id":"770904",
      "result":{
        "state":1 取消,2 拒收,
        "orderId":"订单编号",
        "remark": "备注"
      },
      "time":"2018-01-30 14:22:55",
      "type":10
    }
  ]
}

(6)	type=12 配送单生成成功消息
{
  "success": true,
  "result": [
    {
      "result": {
        "orderId": "LINK20190807220000002"
      },
      "id": "347561",
      "time": "2019-08-07 09:52:03",
      "type": "12"
    },
    {
      "result": {
        "orderId": "LINK20190808340000001"
      },
      "id": "347624",
      "time": "2019-08-08 14:45:31",
      "type": "12"
    }
  ]
}

(7) type=16 商品介绍及规格参数变更消息
{
  "success": true,
  "result": [
    {
      "id":"770904",
      "result":{
          "state":1
          "skuId": 商品编号
      },
      "time":"2018-01-30 14:22:55",
      "type":16
    }
  ]
}

(8) type=18 退换货审批消息
{
  "success": true,
  "result": [
    {
      "id":"890904",
      "result":{
          "state":0 审批拒绝 1 审批通过  2确认退换货
          "returnOrder": 退换货单号
      },
      "time":"2020-08-04 14:22:55",
      "type":18
    }
  ]
}

 (9) type=34 结算单发票开票消息
 {
    "success": true,
 	"result": [
		{
			"id":推送id,
			"result":{
				"settlement_id": 结算单编号 ,
				"state":1
			},
			"type" : 34,
			"time":推送时间
		}
	]
}