Valor Connect Requirements
-
APP ID & APP Key – Required for authentication. These are 32-character alphanumeric values. Retrieve them by following the guide here.
-
EPI (Endpoint Identifier) – A unique 10-digit number assigned to each device on the Valor infrastructure, starting with '2'. Retrieve your EPI by following this guide.
-
Transaction Type (txn_type) – Should be set as "vc_publish" for transaction processing.
-
Channel ID – A 32-character alphanumeric identifier used to define communication channels within the Valor messaging system. Retrieve your assigned Channel ID guide.
-
ISV Certificate ID – Used for certification purposes. This field will be required within our production environment for the Wrapper API.
-
Payload Object – Contains essential transaction parameters, including:
TRAN_MODE – Defaults to "1". Defines transaction mode.
TRAN_CODE – Defaults to "1". Identifies the transaction code.
AMOUNT – Transaction amount, defaults to "100".
REQ_TXN_ID – A unique identifier (max 25 characters) for each transaction request.
Valor Connect Terms to Know
Request Calls
A request call is an API request made by a client to interact with Valor Connect, such as initiating a transaction, retrieving device statuses, or managing payment settings. You can utilize our sample API request guide here.
Response Handling
Response handling involves processing API responses returned by Valor Connect. This includes transaction statuses, error handling, and system notifications. Our API response documentation can be found here.
Merchant & Device Identifiers
Each merchant and device is uniquely identified via Merchant ID (MID) and Terminal ID (TID). These identifiers must be stored and managed securely for API operations.
1. Configuration
- Store APP ID, APP Key, Channel ID, and EPI securely, ensuring encryption of sensitive credentials.
- Implement a configuration function to securely retrieve stored API credentials for making requests.
- Utilize OAuth or token-based authentication where applicable to enhance security.
- Ensure API request URLs are dynamically configurable, supporting sandbox and production environments.
2. Settings Page
- Implement an interface for entering and managing multiple Merchant IDs (MIDs) and Terminal IDs (TIDs).
- Provide the ability to assign labels to each terminal for easy identification within the merchant dashboard.
- Include fields for App ID and App Key, which are required for authentication with Valor APIs.
- Support the ability to toggle between sandbox and production environments for testing and live transactions.
- Allow the EPI (endpoint identifier) to be stored and managed dynamically, ensuring merchants can select the appropriate device for processing.
3. Checkout Page
Device Selection & Status
- Implement a dropdown list to select a payment terminal for processing transactions.
- Display device status (online/offline) using the device status API before initiating a transaction.
- Prevent transactions from being initiated on a device marked as offline.
Transaction Handling
- Ensure that a transaction request cannot be duplicated or sent again until the previous request has been completed or timed out.
- Use webhooks or polling to listen for transaction updates and process responses.
- Ensure transaction requests include TRAN_MODE, TRAN_CODE, AMOUNT, and REQ_TXN_ID to properly track and process payments.
- Parse and display useful transaction details such as amount, approval code, transaction status, and other relevant merchant-facing information.