#joe0931-invoice-behavior
1 messages · Page 1 of 1 (latest)
Nope
In php I have the following
$invoice = $this->stripeClient->createInvoice([
'customer' => $customer->id,
'auto_advance' => true,
'collection_method' => 'charge_automatically',
]);
$invoice->pay(); // todo: double check this is necessary
here is the snippet
But it won't be automatically charged until an hour after finalization
Yeah
Ahhh okay good to know, thank you!