私が理解しているように、私はお金を取るときに、私はそれらを顧客のオブジェクトから取り出し、私がお金を払おうとするとき、私はそれらをオブジェクトの説明に導きます。
私はその後、私は顧客をアカウントに接続する方法は?
curl https://api.stripe.com/v1/accounts \
-u sk_test_qoHbcUFCbOA41F3BRm2OlgdT: \
-d type=standard \
-d country=US \
-d email="[email protected]"
経由account_1とaccount_2を作成今customer_2がcustomer_1 から何かを購入し、私はcustomer_2.customer_idとcustomer_1を指定する必要が異なる2つのトークン
curl https://api.stripe.com/v1/customers \
-u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
-d description="Customer for [email protected]" \
-d source=tok_189gHx2eZvKYlo2CzA1hApdo
経由customer_1とcustomer_2を作成しました。 account_id はaccount_1に送信されますが、どのようにしてcustomer_1とaccount_1をリンクすることができますか。
私はIRCであなたに答えたと思うが、支払うために、各顧客は自分のストライプアカウントを必要とする:https://stripe.com/docs/checkout#integration-custom – koopajah