我使用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
列中没有任何内容。
该如何查看此列中的某些数据?