ChargeExceedsTransactionLimit

  • This error code indicates that a payment request exceeded the per-transaction limit.

  • Integrators can use the transactionLimit field to display messaging to the user about the exceeded limit.

  • The rawResult field allows integrators to provide Google with additional context about the decline, such as raw decline codes from payment networks.

  • The transactionLimit field contains an Amount object with the maximum allowed transaction amount in the same currency as the request.

This payment request's amount exceeds per-transaction limit. If this code is used populate the transactionLimit field for user messaging purposes.

JSON representation
{
  "rawResult": {
    object (RawResult)
  },

  // The following is a list of mutually exclusive fields. At most one of the
  // fields will be set in a response:
  "transactionLimit": {
    object (Amount)
  }
  // End of mutually exclusive fields.
}
Fields
rawResult

object (RawResult)

OPTIONAL: Raw result of this event. Used to help inform Google's risk engine and analytics. In decline code–mapping situations, data is sometimes lost. The integrator can choose to give Google a raw code. For example, a credit card gateway (the integrator) may use this field to communicate to Google the exact decline code that was received from the VISA network. In that case, the scope would be "visa" and the rawCode would be whatever the VISA network returned.

REQUIRED: The per-transaction limit which was exceeded by this transaction. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
transactionLimit

object (Amount)

REQUIRED: This is the maximum amount the user could spend on a transaction.

The currencyCode of transactionLimit must match the currencyCode of the request.

End of mutually exclusive fields.