#brot1n-

1 messages · Page 1 of 1 (latest)

sudden ingot
#

for the first question: that's oddly phrased in our docs. Let me check, as I thought it worked on all currencies

#

Yeah, that seems like a bug in our docs. I'll raise internally to confirm

#

For question #2: Do you have a customer ID and Subscription ID that you're using when that error is surfaced?

wild tulip
#

yep, heres my api call:

$client->subscriptions->create(
    [
        'customer' => 'cus_MBRNSa71YoUvKV',
        'items' => [
            [
                'price' => 'price_1LVbefAh0Ubm2Iwb2BTF9i8e',
                'quantity' => 1
            ]
        ],
        'collection_method' => 'send_invoice',
        'days_until_due' => 30,
        'payment_settings' => [
            'payment_method_types' => ['customer_balance'],
        ]
    ]
);

the customer is US based and the Price is in USD

sudden ingot
#

Okay, apologies for the wait. It looks like USD isn't support and we're still expanding bank transfers: https://stripe.com/docs/payments/bank-transfers

The docs are wrong, as only 4 currencies are currently support, so I'm going to raise internally and see if we can update them to be correct

Learn how to accept bank transfers.

wild tulip
#

Okay gotcha so it seems I need to stick with ach_credit_transfer for now 🤷‍♂️ thanks!