条带-付款记录中缺少“客户”数据

时间:2018-12-17 15:08:58

标签: stripe-payments

我使用Stripe付款。以下代码是我创建新费用的方式:

const charge = await stripe.charges.create(
  {
    amount: 3000,
    currency: "EUR",
    customer: "cus_CuKVIqUoILsL2x",
    destination: "acct_1CVIKoHIbWyS8tq5",
    source: "src_1Dc6omAwuM2keyQciNM6OK7K",
  },
  {
    idempotency_key: 35
  }
)

一切正常,但是当我查看Stripe仪表板-付款时,customer列中没有任何内容。

enter image description here

该如何查看此列中的某些数据?

0 个答案:

没有答案