Elavon EPG

How to enable Elavon EPG CRM on a merchant.

Elavon EPG CRM integration enables merchants to create and manage shopper
profiles through the Elavon Payment Gateway. Shopper records store customer
identity and contact information, allowing payment methods to be vaulted and
reused across future transactions without re-entering sensitive data.

Features

Create Customer A customer created within Authvia platform will be pushed to Elavon EPG.

Resources

Configuration

  1. Log in to the Converge portal to retrieve your API credentials.
  2. Your API Key and Secret Key are available under your account settings or by contacting Converge Software Support at 1-800-377-3962.
  3. Use the UAT host uat.api.converge.eu.elavonaws.com for sandbox testing and the production host for live transactions.
  4. For developer documentation and API reference, visit the Elavon Developer Portal.
  5. For further assistance, contact Elavon support at [email protected].

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": "customers",
  "product": "crm",
  "provider": "elavon-epg",
  "config": {
    "host": "api.converge.eu.elavonaws.com",
    "basicAuth": {
        "username": "your_api_key_here",
        "password": "sk_your_secret_key_here"
    }
},
  
}