Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update payout related references #814

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion src/docs/references/transaction-process-actions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,19 @@ calculates totals for each line item and for the entire transaction.

Existing line items will be removed.

<warning>

If this action is run after a payment intent has already been created
with `:action/stripe-create-payment-intent` or
`:action/stripe-create-payment-intent-push`, the payin and payout
information for the payment intent DO NOT get updated. This can result
in payouts that do not correspond to the latest line item calculation.

In other words, when used with the default Stripe integration, this
action should only ever be used before creating the payment intent.

</warning>

**Preconditions**: -

**Parameters**:
Expand Down Expand Up @@ -1266,9 +1279,15 @@ seven days, after which they are automatically canceled by Stripe.

#### :action/stripe-create-payout

Create pay out to external bank account. The managed account must have
Create a pay out to external bank account. The managed account must have
sufficient available balance.

The timing of the payout depends on when the money is available in
Stripe. If the money is already available when this action is triggered,
the payout happens immediately. If the money is not yet available, the
payout is scheduled based on the time when Stripe indicates that the
balance will be available.

**Preconditions**:

- Transaction must have pay-out value set
Expand Down