Elavon EPG

How to enable Elavon EPG ACH on a merchant.

Elavon EPG ACH payments support charging clear bank account details submitted directly to the Elavon Payment Gateway REST API. Transactions use the ACH payment object with routing number, account number, account type, and account name.

Features

Payment Sale Payments are authorized and immediately captured using ACH payment methods.

Resources

Configuration

To obtain API credentials, contact Converge Software Support at 1-800-377-3962 and request API credentials for Authvia.

This table describes the required or possible attributes needed to configure a merchant product for this type.

NameTypeDescriptionRules
hoststring(required) The Elavon Converge API host. Use the UAT host for testing. Examples: uat.api.converge.eu.elavonaws.com, api.converge.eu.elavonaws.com.
basicAuthobject(required) API Key and Secret Key used for Basic authentication. Examples: [object Object].

Enabling this Product

Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.

{
  "line": "payments",
  "product": "ach",
  "provider": "elavon-epg",
  "config": {
    "host": "api.converge.eu.elavonaws.com",
    "basicAuth": {
        "username": "your_api_key_here",
        "password": "sk_your_secret_key_here"
    }
},
  
}

Data Mapping

The following bullet points outline the mapping of data fields between the Authvia platform and the Elavon EPG system, detailing the correspondence of specific attributes for seamless data integration.

  • Authvia transaction.references.external maps to Elavon EPG customReference
  • Authvia transaction.id maps to Elavon EPG customReference
  • Authvia transaction.description maps to Elavon EPG UNMAPPED
  • Authvia transaction.paymentMethod.routingNumber maps to Elavon EPG achPayment.bankRoutingNumber
  • Authvia transaction.paymentMethod.accountNumber maps to Elavon EPG achPayment.bankAccountNumber
  • Authvia transaction.paymentMethod.accountType maps to Elavon EPG achPayment.achAccountType
  • Authvia transaction.paymentMethod.nameOnAccount maps to Elavon EPG achPayment.accountName
  • Authvia merchant.id maps to Elavon EPG UNMAPPED