Class SalesforcePaymentsMgr

Contains functionality for use with Salesforce Payments. See Salesforce Payments documentation for how to gain access and configure it for use on your sites.

ConstantDescription
CANCELLATION_REASON_ABANDONED: String = "abandoned"Cancellation reason indicating customer abandoned payment.
CANCELLATION_REASON_DUPLICATE: String = "duplicate"Cancellation reason indicating payment intent was a duplicate.
CANCELLATION_REASON_FRAUDULENT: String = "fraudulent"Cancellation reason indicating payment was fraudulent.
CANCELLATION_REASON_REQUESTED_BY_CUSTOMER: String = "requested_by_customer"Cancellation reason indicating customer action or request.
REFUND_REASON_DUPLICATE: String = "duplicate"Refund reason indicating payment intent was a duplicate.
REFUND_REASON_FRAUDULENT: String = "fraudulent"Refund reason indicating payment was fraudulent.
REFUND_REASON_REQUESTED_BY_CUSTOMER: String = "requested_by_customer"Refund reason indicating customer action or request.
PropertyDescription
paymentsSiteConfig: SalesforcePaymentsSiteConfiguration (read-only)Returns a payments site configuration object for the current site.

This class does not have a constructor, so you cannot create it directly.

MethodDescription
static attachPaymentMethod(SalesforcePaymentMethod, Customer)Attaches the given payment method to the given customer.
static authorizePayPalOrder(SalesforcePayPalOrder)Authorizes the given PayPal order.
static cancelPaymentIntent(SalesforcePaymentIntent, Object)Cancels the given payment intent.
static captureAdyenPayment(OrderPaymentInstrument, Money, Object)Captures funds for the given order payment instrument.
static capturePayPalOrder(SalesforcePayPalOrder)Captures funds for the given PayPal order.
static capturePaymentIntent(SalesforcePaymentIntent, Money)Captures funds for the given payment intent.
static confirmPaymentIntent(Order, SalesforcePaymentMethod, Object)

Confirms a new payment intent using the given payment method, and associates it with the given order.

static createAdyenPaymentIntent(Order, Shipment, String, Money, Boolean, Object, Object)

Creates an Adyen payment intent using the given information, and associates it with the given order.

static createPayPalOrder(Basket, Shipment, String, Money, Object)

Creates a PayPal order using the given information, and associates it with the given basket.

static createPaymentIntent(Basket, Shipment, String, Money, Boolean, Object)

Creates a payment intent using the given information, and associates it with the given basket.

static detachPaymentMethod(SalesforcePaymentMethod)Detaches the given payment method from its associated customer.
static getAdyenSavedPaymentMethods(Customer)Returns a collection containing the Adyen payment methods saved to be presented to the given customer for reuse in checkouts.
static getAttachedPaymentMethods(Customer)Returns a collection containing the payment methods attached to the given customer.
static getOffSessionPaymentMethods(Customer)Returns a collection containing the payment methods for the given customer set up for future off session reuse.
static getPayPalOrder(Basket)Returns the PayPal order for the given basket, or null if the given basket has none.
static getPayPalOrder(Order)Returns the PayPal order for the given order, or null if the given order has none.
static getPaymentDetails(OrderPaymentInstrument)Returns the details to the Salesforce Payments payment associated with the given payment instrument, or null if the given payment instrument has none.
static getPaymentIntent(Basket)Returns the payment intent for the given basket, or null if the given basket has none.
static getPaymentIntent(Order)Returns the payment intent for the given order, or null if the given order has none.
static getPaymentsSiteConfig()Returns a payments site configuration object for the current site.
static getPaymentsZone(String)Returns a payments zone object for the passed in payments zone ID.
static getSavedPaymentMethods(Customer)Returns a collection containing the payment methods saved to be presented to the given customer for reuse in checkouts.
static handleAdyenAdditionalDetails(Order, String, Object)

Handles the given additional Adyen payment details and associates the associated payment with the given order, if applicable.

static onCustomerRegistered(Order)Handles the account registration of the shopper who placed the given order.
static refundAdyenPayment(OrderPaymentInstrument, Money, Object)Refunds previously captured funds for the given order payment instrument.
static refundPayPalOrderCapture(SalesforcePayPalOrder)Refunds the capture for the given PayPal order.
static refundPaymentIntent(SalesforcePaymentIntent, Money, Object)Refunds previously captured funds for the given payment intent.
static removeAdyenSavedPaymentMethod(SalesforceAdyenSavedPaymentMethod)Deletes an Adyen saved payment method.
static removeSavedPaymentMethod(SalesforcePaymentMethod)Removes the given saved payment method so that it is no longer presented to the given customer for reuse in checkouts.
static resolvePaymentsZone(Object)Resolves and returns the payments zone object for the passed in payments zone properties object.
static reverseAdyenPayment(OrderPaymentInstrument, Object)Reverses the authorisation for the given order payment instrument.
static savePaymentMethod(Customer, SalesforcePaymentMethod)Saves the given payment method to be presented to the given customer for reuse in subsequent checkouts.
static setPaymentDetails(OrderPaymentInstrument, SalesforcePaymentDetails)Sets the details to the Salesforce Payments payment associated with the given payment instrument.
static updatePaymentIntent(SalesforcePaymentIntent, Shipment, Money, String, Object)Updates the provided information in the given payment intent.
static voidPayPalOrderAuthorization(SalesforcePayPalOrder)Voids the authorization for the given PayPal order.

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

CANCELLATION_REASON_ABANDONED: String = "abandoned"

Cancellation reason indicating customer abandoned payment.


CANCELLATION_REASON_DUPLICATE: String = "duplicate"

Cancellation reason indicating payment intent was a duplicate.


CANCELLATION_REASON_FRAUDULENT: String = "fraudulent"

Cancellation reason indicating payment was fraudulent.


CANCELLATION_REASON_REQUESTED_BY_CUSTOMER: String = "requested_by_customer"

Cancellation reason indicating customer action or request.


REFUND_REASON_DUPLICATE: String = "duplicate"

Refund reason indicating payment intent was a duplicate.


REFUND_REASON_FRAUDULENT: String = "fraudulent"

Refund reason indicating payment was fraudulent.


REFUND_REASON_REQUESTED_BY_CUSTOMER: String = "requested_by_customer"

Refund reason indicating customer action or request.


paymentsSiteConfig: SalesforcePaymentsSiteConfiguration (read-only)

Returns a payments site configuration object for the current site.


static attachPaymentMethod(paymentMethod: SalesforcePaymentMethod, customer: Customer): void

Attaches the given payment method to the given customer. Use this method to attach a payment method of type SalesforcePaymentMethod.TYPE_CARD to a shopper who registers as a customer after placing an order, and has affirmatively elected to save their card as part of the registration process. This method will throw an error if passed incompatible payment method and/or customer objects.

Parameters:

  • paymentMethod - payment method to attach to customer
  • customer - customer whose payment method to attach

Throws:

  • Exception - if there was an error attaching the payment method to the customer

Deprecated:

use onCustomerRegistered(Order) and savePaymentMethod(Customer, SalesforcePaymentMethod)


static authorizePayPalOrder(paypalOrder: SalesforcePayPalOrder): Status

Authorizes the given PayPal order.

The PayPal order must be in a status that supports authorization. See the PayPal documentation for more details.

Parameters:

  • paypalOrder - PayPal order to authorize

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.

Throws:

  • Exception - if there was an error authorizing the PayPal order

static cancelPaymentIntent(paymentIntent: SalesforcePaymentIntent, paymentIntentProperties: Object): Status

Cancels the given payment intent. If a payment authorization has been made for the payment intent, the authorization is removed.

The payment intent must be in a status that supports cancel. See the Stripe documentation for more details.

The following Payment Intent property is supported:

  • cancellationReason- optional payment intent cancellation reason

Parameters:

  • paymentIntent - payment intent to capture
  • paymentIntentProperties - additional properties to pass to the create Payment Intent API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.

Throws:

  • Exception - if there was an error canceling the payment intent

See Also:


static captureAdyenPayment(orderPaymentInstrument: OrderPaymentInstrument, amount: Money, transactionProperties: Object): Status

Captures funds for the given order payment instrument.

The order payment instrument must be in a state that supports capture.

The amount must be less than or equal to the amount available to capture.

The following Transaction properties are supported:

  • reference- optional reference for the transaction, for example order number

Parameters:

  • orderPaymentInstrument - payment instrument to capture
  • amount - amount to capture
  • transactionProperties - properties to pass to the capture Adyen Payment API

Returns:

  • Status 'OK' or 'ERROR'.

Throws:

  • Exception - if there was an error capturing the payment instrument

static capturePayPalOrder(paypalOrder: SalesforcePayPalOrder): Status

Captures funds for the given PayPal order.

The PayPal order must be in a status that supports capture. See the PayPal documentation for more details.

Parameters:

  • paypalOrder - PayPal order to capture

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.

Throws:

  • Exception - if there was an error capturing the PayPal order

static capturePaymentIntent(paymentIntent: SalesforcePaymentIntent, amount: Money): Status

Captures funds for the given payment intent.

The payment intent must be in a status that supports capture. See the Stripe documentation for more details.

If amount is not specified, the default is the full amount available to capture. If specified, the amount must be less than or equal to the amount available to capture.

Parameters:

  • paymentIntent - payment intent to capture
  • amount - optional amount to capture, defaults to amount available to capture

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the Stripe error information, if it is available in the response.

Throws:

  • Exception - if there was an error capturing the payment intent

static confirmPaymentIntent(order: Order, paymentMethod: SalesforcePaymentMethod, paymentIntentProperties: Object): Status

Confirms a new payment intent using the given payment method, and associates it with the given order.

The order must be prepared to contain products, shipments, and any other necessary data, and must be calculated to reflect the correct total amounts. If the order is not for the same Customer as the given payment method, an error is thrown.

The specified payment method must be set up for off session future use or an error is thrown. iDeal and Bancontact implement reuse differently than other payment methods, but they can't be reused themselves.

The following Payment Intent properties are supported:

  • statementDescriptor- optional statement descriptor - cardCaptureAutomatic- optional trueif the credit card payment should be automatically captured at the time of the sale, or falseif the credit card payment should be captured later

If cardCaptureAutomaticis provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used.

If statementDescriptoris provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply.

Parameters:

  • order - order to pay using Salesforce Payments
  • paymentMethod - payment method to use to pay
  • paymentIntentProperties - additional properties to pass to the create Payment Intent API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.

Throws:

  • Exception - if the parameter validation failed or there's an error confirming the payment intent

static createAdyenPaymentIntent(order: Order, shipment: Shipment, zoneId: String, amount: Money, customerRequired: Boolean, paymentData: Object, paymentIntentProperties: Object): Status

Creates an Adyen payment intent using the given information, and associates it with the given order.

The following Payment Intent properties are supported:

  • type- required payment method type, such as SalesforcePaymentMethod.TYPE_CARD - cardCaptureAutomatic- optional trueif the credit card payment should be automatically captured at the time of the sale, or falseif the credit card payment should be captured later - storePaymentMethod- optional trueif the payment method should be stored for future usage, or falseif not

If cardCaptureAutomaticis provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used.

Parameters:

  • order - order to checkout and pay using Salesforce Payments
  • shipment - shipment to use for shipping information in the payment intent
  • zoneId - id of the payment zone
  • amount - payment amount
  • customerRequired - true if an Adyen shopper reference must be associated with the transaction and needs to be created if it does not already exist for the given ecom customer or false a shopper reference does not have to be associated with the transaction. A customer is required if storing a payment method for future usage or using an existing stored payment method.
  • paymentData - Adyen specific payment data passed directly from the client as-is
  • paymentIntentProperties - properties to pass to the create Payment Intent API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Adyen response. Status detail 'error' contains the Adyen error information, if it is available in the response.

static createPayPalOrder(basket: Basket, shipment: Shipment, zoneId: String, amount: Money, paypalOrderProperties: Object): Status

Creates a PayPal order using the given information, and associates it with the given basket.

The following PayPal order properties are supported:

If intentis provided it is used to determine manual or automatic capture, and otherwise the default card capture timing set for the site is used.

Parameters:

  • basket - basket to checkout and pay using Salesforce Payments
  • shipment - shipment to use for shipping information in the payment intent
  • zoneId - id of the payment zone
  • amount - payment amount
  • paypalOrderProperties - properties to pass to the create PayPal order API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paypalorder' contains the PayPal order, if it is available in the PayPal response. Status detail 'error' contains the PayPal error information, if it is available in the response.

static createPaymentIntent(basket: Basket, shipment: Shipment, zoneId: String, amount: Money, stripeCustomerRequired: Boolean, paymentIntentProperties: Object): Status

Creates a payment intent using the given information, and associates it with the given basket.

The following Payment Intent properties are supported:

  • type- required payment method type, such as SalesforcePaymentMethod.TYPE_CARD - statementDescriptor- optional statement descriptor - cardCaptureAutomatic- optional trueif the credit card payment should be automatically captured at the time of the sale, or falseif the credit card payment should be captured later - setupFutureUsage- optional future usage setup value, such as SalesforcePaymentIntent.SETUP_FUTURE_USAGE_ON_SESSION

The stripeCustomerRequiredmust be set to trueif the payment will be set up for future usage, whether on session or off session. If truethen if a Stripe Customer is associated with the shopper then it will be used, and otherwise a new Stripe Customer will be created. The new Stripe Customer will be associated with the shopper if logged into a registered customer account for the site.

If cardCaptureAutomaticis provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used.

If statementDescriptoris provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply.

If setupFutureUsageis provided it will be used to prepare the payment to be set up for future usage at confirmation time. When set, this future usage setup value must match the value used at confirmation time.

Parameters:

  • basket - basket to checkout and pay using Salesforce Payments
  • shipment - shipment to use for shipping information in the payment intent
  • zoneId - id of the payment zone
  • amount - payment amount
  • stripeCustomerRequired - true if a Stripe Customer must be associated with the payment intent, and would be created if it doesn't already exist, or false if a Stripe Customer does not have to be associated with the payment intent
  • paymentIntentProperties - properties to pass to the create Payment Intent API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.

static detachPaymentMethod(paymentMethod: SalesforcePaymentMethod): void

Detaches the given payment method from its associated customer. Once detached the payment method remains associated with payment intents in the payment account, but is no longer saved for use by the customer in future orders.

Parameters:

  • paymentMethod - payment method to detach from customer

Throws:

  • Exception - if there was an error detaching the payment method from its customer

Deprecated:

use removeSavedPaymentMethod(SalesforcePaymentMethod)


static getAdyenSavedPaymentMethods(customer: Customer): Collection

Returns a collection containing the Adyen payment methods saved to be presented to the given customer for reuse in checkouts. The collection will be empty if there are no payment methods saved for the customer, or there was an error retrieving the saved payment methods.

Parameters:

  • customer - customer whose saved payment methods to get

Returns:

  • collection of saved payment methods

Throws:

  • Exception - if the given customer is null or undefined, or there is configuration missing that is required to retrieve the saved payment methods

static getAttachedPaymentMethods(customer: Customer): Collection

Returns a collection containing the payment methods attached to the given customer. The collection will be empty if there are no payment methods attached to the customer, or there was an error retrieving the attached payment methods.

Parameters:

  • customer - customer whose payment methods to get

Returns:

  • collection of attached payment methods

Throws:

  • Exception - if the given customer is null or undefined

Deprecated:

use getSavedPaymentMethods(Customer)


static getOffSessionPaymentMethods(customer: Customer): Collection

Returns a collection containing the payment methods for the given customer set up for future off session reuse. The collection will be empty if there are no off session payment methods for the customer, or there was an error retrieving the off session payment methods.

Parameters:

  • customer - customer whose off session payment methods to get

Returns:

  • collection of off session payment methods

Throws:

  • Exception - if the given customer is null or undefined, or there is an error getting the off session payment methods

static getPayPalOrder(basket: Basket): SalesforcePayPalOrder

Returns the PayPal order for the given basket, or null if the given basket has none.

Parameters:

  • basket - basket to checkout and pay using Salesforce Payments

Returns:

  • The PayPal order

Throws:

  • Exception - if there was an error retrieving the PayPal order for the basket

static getPayPalOrder(order: Order): SalesforcePayPalOrder

Returns the PayPal order for the given order, or null if the given order has none.

Parameters:

  • order - order paid using Salesforce Payments

Returns:

  • The PayPal order

Throws:

  • Exception - if there was an error retrieving the PayPal order for the order

static getPaymentDetails(paymentInstrument: OrderPaymentInstrument): SalesforcePaymentDetails

Returns the details to the Salesforce Payments payment associated with the given payment instrument, or null if the given payment instrument has none.

Parameters:

  • paymentInstrument - payment instrument

Returns:

  • The payment details

Throws:

  • Exception - if paymentInstrument is null

static getPaymentIntent(basket: Basket): SalesforcePaymentIntent

Returns the payment intent for the given basket, or null if the given basket has none.

Parameters:

  • basket - basket to checkout and pay using Salesforce Payments

Returns:

  • The payment intent

Throws:

  • Exception - if there was an error retrieving the payment intent for the basket

static getPaymentIntent(order: Order): SalesforcePaymentIntent

Returns the payment intent for the given order, or null if the given order has none.

Parameters:

  • order - order paid using Salesforce Payments

Returns:

  • The payment intent

Throws:

  • Exception - if there was an error retrieving the payment intent for the order

static getPaymentsSiteConfig(): SalesforcePaymentsSiteConfiguration

Returns a payments site configuration object for the current site.

Returns:

  • a payments site configuration or null if no payments site configuration found

Throws:

  • Exception - if there is no current site

static getPaymentsZone(zoneId: String): SalesforcePaymentsZone

Returns a payments zone object for the passed in payments zone ID.

Parameters:

  • zoneId - ID of the payments zone to retrieve and use to checkout and pay using Salesforce Payments

Returns:

  • a payments zone or null if no payments zone with the given ID exists

static getSavedPaymentMethods(customer: Customer): Collection

Returns a collection containing the payment methods saved to be presented to the given customer for reuse in checkouts. The collection will be empty if there are no payment methods saved for the customer, or there was an error retrieving the saved payment methods.

Parameters:

  • customer - customer whose saved payment methods to get

Returns:

  • collection of saved payment methods

Throws:

  • Exception - if the given customer is null or undefined, or there is configuration missing that is required to retrieve the saved payment methods

static handleAdyenAdditionalDetails(order: Order, zoneId: String, data: Object): Status

Handles the given additional Adyen payment details and associates the associated payment with the given order, if applicable.

Pass the state data from the Adyen onAdditionalDetails event as-is, without any encoding or other changes to the data or its structure. See the Adyen documentation for more information.

Parameters:

  • order - order to checkout and pay using Salesforce Payments
  • zoneId - id of the payment zone
  • data - additional details state data

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'adyenpayment' contains the payment details, if it is available in the Adyen response and the response resultCode is 'Authorised'. Status detail 'error' contains the Adyen error information, if it is available in the response.

static onCustomerRegistered(order: Order): void

Handles the account registration of the shopper who placed the given order. Use this method to ensure the registered customer profile is associated with the order in Salesforce Payments.

Parameters:

  • order - order paid using Salesforce Payments

Throws:

  • Exception - if there was an error attaching the payment method to the customer

static refundAdyenPayment(orderPaymentInstrument: OrderPaymentInstrument, amount: Money, transactionProperties: Object): Status

Refunds previously captured funds for the given order payment instrument.

The order payment instrument must be in a state that supports refund.

The amount must be less than or equal to the amount available to refund.

The following Transaction properties are supported:

  • reference- optional reference for the transaction, for example order number

Parameters:

  • orderPaymentInstrument - payment instrument to refund
  • amount - amount to refund
  • transactionProperties - properties to pass to the refund Adyen Payment API

Returns:

  • Status 'OK' or 'ERROR'.

Throws:

  • Exception - if there was an error refunding the payment instrument

static refundPayPalOrderCapture(paypalOrder: SalesforcePayPalOrder): Status

Refunds the capture for the given PayPal order.

The PayPal order must have a capture in a status that supports refund. See the PayPal documentation for more details.

Parameters:

  • paypalOrder - PayPal order whose capture to refund

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.

Throws:

  • Exception - if there was an error refunding the capture for the PayPal order

static refundPaymentIntent(paymentIntent: SalesforcePaymentIntent, amount: Money, refundProperties: Object): Status

Refunds previously captured funds for the given payment intent.

The payment intent must be in a state that supports refund. This includes its status as well as any previous refunds. See the Stripe documentation for more details.

The following Payment Intent property is supported:

  • reason- optional payment intent refund reason

If amountis not specified, the default is the full amount available to refund. If specified, the amount must be less than or equal to the amount available to refund.

Parameters:

  • paymentIntent - payment intent to refund
  • amount - optional amount to refund, defaults to amount previously captured
  • refundProperties - additional properties to pass to the refund API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the Stripe error information, if it is available in the response.

Throws:

  • Exception - if there was an error refunding the payment intent

See Also:


static removeAdyenSavedPaymentMethod(savedPaymentMethod: SalesforceAdyenSavedPaymentMethod): void

Deletes an Adyen saved payment method.

Parameters:

  • savedPaymentMethod - the saved payment method to delete

Throws:

  • Exception - if the saved payment method is null or undefined, or there is configuration missing that is required to delete the saved payment method

static removeSavedPaymentMethod(paymentMethod: SalesforcePaymentMethod): void

Removes the given saved payment method so that it is no longer presented to the given customer for reuse in checkouts. The payment method remains in the payment account, but is no longer saved for use by the customer.

Parameters:

  • paymentMethod - payment method to detach from customer

Throws:

  • Exception - if there was an error removing the saved payment method from its customer

static resolvePaymentsZone(paymentsZoneProperties: Object): SalesforcePaymentsZone

Resolves and returns the payments zone object for the passed in payments zone properties object. If an empty object is provided, the default payments zone will be returned if it exists.

The following payments zone properties are supported:

  • countryCode- optional country code of the shopper, or nullif not known
  • currency- optional basket currency, or nullif not known

Parameters:

  • paymentsZoneProperties - properties to use to retrieve the payments zone for to use to checkout and pay using Salesforce Payments

Returns:

  • a payments zone

Throws:

  • Exception - if no default payments zone exists

static reverseAdyenPayment(orderPaymentInstrument: OrderPaymentInstrument, transactionProperties: Object): Status

Reverses the authorisation for the given order payment instrument.

The order payment instrument must be in a state that supports reversal.

The following Transaction properties are supported:

  • reference- optional reference for the transaction, for example order number

Parameters:

  • orderPaymentInstrument - payment instrument to reverse
  • transactionProperties - properties to pass to the reverse Adyen Payment API

Returns:

  • Status 'OK' or 'ERROR'.

Throws:

  • Exception - if there was an error reversing the payment instrument

static savePaymentMethod(customer: Customer, paymentMethod: SalesforcePaymentMethod): void

Saves the given payment method to be presented to the given customer for reuse in subsequent checkouts. This method will throw an error if passed incompatible payment method and/or customer objects.

Parameters:

  • customer - customer for which to save the payment method
  • paymentMethod - payment method to save for the customer

Throws:

  • Exception - if there was an error saving the payment method for the customer

static setPaymentDetails(paymentInstrument: OrderPaymentInstrument, paymentDetails: SalesforcePaymentDetails): void

Sets the details to the Salesforce Payments payment associated with the given payment instrument.

Parameters:

  • paymentInstrument - payment instrument
  • paymentDetails - payment details

Throws:

  • Exception - if either paymentInstrument or paymentDetails is null

See Also:


static updatePaymentIntent(paymentIntent: SalesforcePaymentIntent, shipment: Shipment, amount: Money, orderNo: String, paymentIntentProperties: Object): Status

Updates the provided information in the given payment intent.

The payment intent must be in a status that supports update. See the Stripe documentation for more details.

The following Payment Intent properties are supported:

  • statementDescriptor- optional statement descriptor - cardCaptureAutomatic- optional trueif the credit card payment should be automatically captured at the time of the sale, or falseif the credit card payment should be captured later

If cardCaptureAutomaticis provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used.

If statementDescriptoris provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply.

Parameters:

  • paymentIntent - payment intent to update
  • shipment - optional shipment to use to update shipping information in the payment intent
  • amount - optional new payment amount
  • orderNo - optional order no of Order to associate with the payment intent in metadata
  • paymentIntentProperties - optional additional properties to pass to the update Payment Intent API

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.

Throws:

  • Exception - if the parameter validation failed or there's an error updating the payment intent

static voidPayPalOrderAuthorization(paypalOrder: SalesforcePayPalOrder): Status

Voids the authorization for the given PayPal order.

The PayPal order must have an authorization in a status that supports voiding. See the PayPal documentation for more details.

Parameters:

  • paypalOrder - PayPal order whose authorization to void

Returns:

  • Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.

Throws:

  • Exception - if there was an error voiding the authorization for the PayPal order