支付寶小程序Serverless 資金能力API·cloud.fund.transferBankcard.query

2020-09-18 14:33 更新

cloud.fund.transferBankcard.query 是查詢轉(zhuǎn)賬業(yè)務(wù)單據(jù)的狀態(tài)接口。

入?yún)⒄f明

字段名 類型 必填 說明
payFundOrderId String 支付寶支付資金流水號。

調(diào)用示例

在云函數(shù)中調(diào)用

// 云函數(shù)中使用云調(diào)用無需引入其他依賴,只需要使用ctx.cloud調(diào)用
module.exports = async function (ctx) {
  const res = await ctx.cloud.fund.transferBankcard.query({
    // 參數(shù)接收自云函數(shù)調(diào)用端傳入的參數(shù)
    payFundOrderId: ctx.args.payFundOrderId
  });
  return res;
};

支持傳入appAuthToken進(jìn)行三方代調(diào)用

// 云函數(shù)中使用云調(diào)用無需引入其他依賴,只需要使用ctx.cloud調(diào)用
module.exports = async function (ctx) {
  const res = await ctx.cloud.fund.transferBankcard.query({
    // 參數(shù)接收自云函數(shù)調(diào)用端傳入的參數(shù)
    payFundOrderId: ctx.args.payFundOrderId
  }, {
    // appAuthToken參數(shù)接收自云函數(shù)調(diào)用處傳入的參數(shù)
    appAuthToken: ctx.args.appAuthToken
  });
  return res;
};

在小程序頁面調(diào)用

alipay-serverless-sdk 版本&=1.0.0

const res = await cloud.fund.transferBankcard.query({
    payFundOrderId: this.data.pay_fund_order_id
  });

alipay-serverless-sdk 版本<1.0.0

const res = await cloud.fund.transferBankcard.query(this.data.pay_fund_order_id);

返回數(shù)據(jù)示例

{
    "code":"10000",
    "msg":"Success",
    "order_id":"20190801110070000006380000250621",
    "pay_fund_order_id":"20190801110070001506380000251556",
    "out_biz_no":"201808080001",
    "trans_amount":1,
    "status":"SUCCESS",
    "pay_date":"2013-01-01 08:08:08",
    "arrival_time_end":"2013-01-01 08:08:08",
    "order_fee":"0.02"
}
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號