Transaction

Transaction: Submit For Settlement

See also the Transaction response object.

If you do not use the options.submit_for_settlement option with Transaction: Sale, then you will have to explicitly submit the transaction for settlement.

  1. Ruby
result = gateway.transaction.submit_for_settlement("the_transaction_id")

if result.success?
  settled_transaction = result.transaction
else
  puts(result.message)
end
Arguments
amount, BigDecimal

An amount to submit for settlement. Must be greater than 0. 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.

If you settle an amount that is less than what was authorized, the transaction object will return the amount settled.

transaction_idrequired, String
The unique transaction identifier. You can only submit transactions that have a status of authorized for settlement.
Additional Parameters

Dynamic descriptors are not enabled on all accounts by default. If you receive a validation error of 92203 or if your dynamic descriptors are not displaying as expected, please contact us.

Dynamic descriptors are sent on a per-transaction basis and define what will appear on your customers' credit card statements for a specific purchase. The clearer the description of your product, the less likely customers will issue chargebacks due to confusion or non-recognition.



See the dynamic descriptor example for additional information.

A Level 3 field that specifies the discount amount that was included in the total transaction amount. It can't be negative, and it does not add to the total transaction amount. This PayPal Braintree line-item field is not used by PayPal.

The line items for this transaction. It can include up to 249 line items. If your merchant account has been configured for Level 3 processing this field will be passed to the processor on your behalf.

Code used to classify items purchased and track the total amount spent across various categories of products and services. Different corporate purchasing organizations may use different standards, but the United Nations Standard Products and Services Code (UNSPSC) is frequently used. Maximum 12 characters. This PayPal Braintree line-item field is not used by PayPal.
Item description. Maximum 127 characters.
Discount amount for the line item. Can include up to 2 decimal places. This value can't be negative. This PayPal Braintree line-item field is not used by PayPal.
:kindString

Indicates whether the line item is a debit (sale) or credit (refund) to the customer. Accepted values:

  • "debit"
  • "credit"
:nameString
Item name. Maximum 35 characters, or 127 characters for PayPal transactions.
Product or UPC code for the item. Maximum 12 characters, or 127 characters for PayPal transactions.
:quantityBigDecimal
Number of units of the item purchased. Can include up to 4 decimal places. This value can't be negative or zero.
:total_amountBigDecimal
Quantity x unit amount. Can include up to 2 decimal places.
:unit_amountBigDecimal
Per-unit price of the item. Maximum 4 decimal places, or 2 decimal places for PayPal transactions. This value can't be negative or zero.
The unit of measure or the unit of measure code. Maximum 12 characters. This PayPal Braintree line-item field is not used by PayPal.
Per-unit tax price of the item. Can include up to 2 decimal places. This value can't be negative or zero.
:urlString
The URL to product information.
:order_idString
Use this field to pass additional information about the transaction. On PayPal transactions, this field maps to the PayPal invoice number. PayPal invoice numbers must be unique in your PayPal business account. Maximum 255 characters or 127 for PayPal transactions.

A Level 2 field that can be used to pass a purchase order identification value of up to 12 ASCII characters for AIB and 17 ASCII characters for all other processors.

Shipping address information associated with a specific customer ID.
:companyString
Company name. 255 character maximum.

The ISO 3166-1 alpha-2 country code specified in an address. The gateway only accepts specific alpha-2 values.

The ISO 3166-1 alpha-3 country code specified in an address. The gateway only accepts specific alpha-3 values.

The ISO 3166-1 numeric country code specified in an address. The gateway only accepts specific numeric values.

The country name specified in an address. We only accept specific country names.

The extended address information—such as apartment or suite number. 255 character maximum.
The first name. The first name value must be less than or equal to 255 characters. Required if passing a PayPal shipping address.
The last name. The last name value must be less than or equal to 255 characters. Required if passing a PayPal shipping address.
:localityString
The locality/city. 255 character maximum. Required if passing a PayPal shipping address.
The phone number that belongs to the shipping address. Phone number must be 10-14 characters and can only contain numbers, hyphens and parentheses.
The postal code. Postal code must be a string of 4-9 alphanumeric characters, optionally separated by a dash or a space. Spaces and hyphens are ignored. Required if passing a PayPal shipping address.
:regionString
The state or province. For PayPal addresses, the region must meet PayPal's state restrictions; for all other payment methods, it must be less than or equal to 255 characters. Required if passing a PayPal shipping address.
The street address. 255 character maximum. Required if passing a PayPal shipping address.
A shipping address associated with a specific customer ID. The maximum number of addresses per customer is 50.

A Level 3 field that specifies the shipping cost on the entire transaction. It can't be negative, and it does not add to the total transaction amount.

A Level 3 field that specifies the postal code of the shipping location.

:tax_amountBigDecimal

A Level 2 field that specifies the amount of tax that was included in the total transaction amount. The value can't be negative, and in most cases, it must be greater than zero in order to qualify for lower interchange rates. It does not add to the total transaction amount.

A Level 2 field that indicates whether or not the transaction should be considered eligible for tax exemption. This does not affect the total transaction amount.

Examplesanchor

Specifying settlement amountanchor

If you want to settle for an amount that is different from the total authorization amount, you can specify the amount to settle. If you do not specify, the entire amount will be settled.

You can only submit for settlement for an amount that is less than the total authorization amount one time. To submit more than once, you will need to use multiple partial settlements; this method is available for PayPal and Venmo transactions, and some credit card transactions for select merchants.

Authorization adjustmentsanchor

availability

Authorization adjustments are available for select merchants and processors. See our support articles for details.

For eligible merchants, authorization adjustments occur automatically when you submit for settlement for an amount greater or less than the original authorized amount.

Each adjustment attempt is recorded as an adjustment detail, which is returned on the transaction response object. Adjustment details allow you to determine decline responses and track the overall success rate of auth adjustments.

You can account for real-time decline responses in the form of validation errors.

If you have questions regarding auth adjustment eligibility or functionality, please contact us for details.

  1. Ruby
result = gateway.transaction.submit_for_settlement("the_transaction_id", "35.00")

Specifying Level 2 and 3 dataanchor

availability

Level 2 and 3 processing via submit for settlement requires internal approval. Please contact us if you’re interested in this functionality. See our Level 2 and 3 processing overview for more details.

In some cases, transaction amounts, and by extension Level 2 and 3 parameters, are not finalized until the transaction is ready to be submitted for settlement. This functionality allows you to apply Level 2 and 3 parameters when submitting a transaction for settlement instead of specifying them in the transaction sale call.

Level 2 and 3 data provided via submit for settlement will override all Level 2 and 3 data previously provided in a sale request. If you wish to pass Level 2 and 3 data, we recommend utilizing either transaction.sale or transaction.submit_for_settlement, but not both at the same time.

  1. Ruby
result = gateway.transaction.submit_for_settlement("transaction_id", nil, {
  :purchase_order_number => "12345",
  :tax_amount => "1.23",
  :shipping_amount => "1.00",
  :discount_amount => "0.00",
  :ships_from_postal_code => "60654",
  :line_items => [
    {
      :name => "Product Name",
      :kind => "debit",
      :quantity => "10.0000",
      :unit_amount => "9.5000",
      :unit_of_measure => "unit",
      :total_amount => "95.00",
      :tax_amount => "5.00",
      :discount_amount => "0.00",
      :product_code => "54321",
      :commodity_code => "98765"
    }
  ]
})

if result.success?
  settled_transaction = result.transaction
else
  puts(result.message)
end

When adding level 2 and 3 data in Ruby, you must also specify the amount to settle. If you want to settle the entire amount, pass nil.

Shipping address informationanchor

availability

Sending shipping address fields via submit for settlement requires internal approval. Please contact us if you're interested in this functionality.

In some cases, the shipping address information cannot be determined until the transaction is ready to be submitted for settlement. This functionality allows you to apply shipping address fields when submitting a transaction for settlement instead of specifying them in the transaction sale call. If shipping address parameters are applied via submit for settlement, they will override any corresponding shipping address parameters applied on the sale. We recommend using either transaction.sale or transaction.submit_for_settlement to send shipping address parameters, but not both at the same time.

Shipping address includes the Level 3 fields shipping.postal_code and shipping.country_code_alpha3.

Specifying order IDanchor

You can pass additional information about a transaction by adding the order_id when submitting the transaction for settlement.

When adding an order_id in Ruby, you must also specify the amount to settle. If you want to settle the entire amount, pass nil.

  1. Ruby
result = gateway.transaction.submit_for_settlement("transaction_id", nil, {
  order_id: "order_id"
})

if result.success?
  settled_transaction = result.transaction
else
  puts(result.message)
end