logistics.bindAccount

本接口应在服务器端调用,详细说明参见服务端API

本接口支持云调用。需开发者工具版本 >= 1.02.1904090(最新稳定版下载),wx-server-sdk >= 0.4.0

绑定、解绑物流账号

调用方式:

HTTPS 调用

请求地址

  1. POST https://api.weixin.qq.com/cgi-bin/express/business/account/bind?access_token=ACCESS_TOKEN

请求参数

属性类型默认值必填说明
access_tokenstring接口调用凭证
typestringbind表示绑定,unbind表示解除绑定
biz_idstring快递公司客户编码
delivery_idstring快递公司ID
passwordstring快递公司客户密码
remark_contentstring备注内容(提交EMS审核需要)

返回值

Object

属性类型说明
errcodenumber错误码
errmsgstring错误信息

errcode 的合法值

说明最低版本
0成功
-1系统失败
9300529账号已绑定过
9300530解绑的biz_id不存在
9300531账号或密码错误
9300532绑定已提交,审核中

请求数据示例

  1. {
  2. "type": "bind",
  3. "biz_id": "123456",
  4. "delivery_id": "YUNDA",
  5. "password": "123456789123456789"
  6. }

返回数据示例

  1. {
  2. "errcode": 0,
  3. "errmsg": "ok"
  4. }

云调用

云调用是小程序·云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 wx-server-sdk 使用。

接口方法

  1. openapi.logistics.bindAccount

需在 config.json 中配置 logistics.bindAccount API 的权限,详情

请求参数

属性类型默认值必填说明
typestringbind表示绑定,unbind表示解除绑定
bizIdstring快递公司客户编码
deliveryIdstring快递公司ID
passwordstring快递公司客户密码
remarkContentstring备注内容(提交EMS审核需要)

返回值

Object

属性类型说明
errCodenumber错误码
errMsgstring错误信息

errCode 的合法值

说明最低版本
0成功

异常

Object

抛出的异常

属性类型说明
errCodenumber错误码
errMsgstring错误信息

errCode 的合法值

说明最低版本
-1系统失败
9300529账号已绑定过
9300530解绑的biz_id不存在
9300531账号或密码错误
9300532绑定已提交,审核中

请求数据示例

  1. const cloud = require('wx-server-sdk')
  2. cloud.init()
  3. exports.main = async (event, context) => {
  4. try {
  5. const result = await cloud.openapi.logistics.bindAccount({
  6. type: 'bind',
  7. password: '123456789123456789',
  8. bizId: '123456',
  9. deliveryId: 'YUNDA'
  10. })
  11. console.log(result)
  12. return result
  13. } catch (err) {
  14. console.log(err)
  15. return err
  16. }
  17. }

返回数据示例

  1. {
  2. "errCode": 0,
  3. "errMsg": "openapi.logistics.bindAccount:ok"
  4. }