Venmo
Submit for Partial Settlement
options-submitForSettlement
option with
Transaction: Sale
, then you will have to
explicitly submit the transaction for settlement. If you only want to settle a portion of the total
authorization amount, you can specify the amount to settle.
- PHP
$result = $gateway->transaction()->submitForPartialSettlement('parent_auth_transaction_id', '35.00');
Arguments
The transaction ID of the parent authorization. You can only submit transactions that have a status of ADD for partial settlement.
ADD
An amount to submit for partial settlement against the parent authorization transaction. This amount to be partially settled must be greater than 0. You can make multiple partial settlement calls as long as the cumulative amount to be partially settled is less than or equal to the amount authorized by the parent transaction. You can't settle more than the authorized amount unless your industry and processor support settlement adjustment (settling a certain percentage over the authorized amount); contact us for details.
Transaction settlement
Each partial settlement will create a new child transaction in the gateway with the same details as
the original transaction, but with the amount specified in the
submitForPartialSettlement call. Once a child transaction is created,
the parent will move to a -
All child transactions are
and the cumulative amount submitted for settlement across all child transactions is equal to the amount authorized on the parent transaction. -
The original authorization is
and there are one or more child transactions associated with the parent transaction. -
The parent transaction has remained in
for longer than 30 days, regardless of the child transactions' status.
Refunds
- Once you've submitted a transaction for partial settlement, you can only issue a refund against the child transaction(s).
- A refund on a child transaction can be up to the amount settled on the child.
-
A refund can be issued only when the corresponding transaction has fully settled and is in a
state.