Void - dbvoid
Voiding a transaction is primarily useful for PINless bill pay transactions. Besides this primary case, voiding is usable on other debit transactions that have not settled but you want to cancel.
Requirements
dbvoid
is only usable on terminals with the following settings:
- Region set to USA
- Debit transactions enabled
If you would like to enable these settings on your terminal, please contact supports.
Request
ssl_merchant_id 15 | numeric | required | Merchant ID Elavon-assigned Converge account ID. |
ssl_user_id 15 | alphanumeric | required | Converge User ID The user ID with Hosted Payment API User status that can send transaction requests through the terminal. |
ssl_pin 64 | alphanumeric | required | Terminal ID Unique identifier of the terminal that will process the transaction request and submit to the Converge gateway. Important: The ssl_user_id sending the transaction request must be associated with the terminal that will process the request. |
ssl_transaction_type 20 | alphanumeric | required | Transaction Type Value: dbreverse |
ssl_txn_id 46 | alphanumeric | required | Transaction ID Unique identifier of the approved or denied transaction. |
Response
ssl_issuer_response | Issuer Response |
ssl_card_number | Masked Card Number Converge only returns the first 2 or last 4 digits of the regular PAN, or the last 4 digits of the actual card number if it is an association token (example, ApplePay). |
ssl_result | Transaction Outcome An ssl_result = 0 indicates an approved transaction.An ssl_result not equal to 0 indicates a declined and unauthorized transaction. |
ssl_txn_id | Transaction ID Unique identifier of the transaction. |
ssl_account_type | Bank Deposit Account Type Valid values:
|
ssl_approval_code | Transaction Approval Code Unique code returned by the credit card processor that indicates the approval status of the transaction. |
ssl_amount | Transaction Amount The total transaction amount that may include the Surcharge or Cashback amount. |
ssl_txn_time | Processing Date and Time Indicates when Converge processed the transaction. Format: MM/DD/YYYY hh:mm:ss AM/PM Example: 03/18/2010 10:34:10 AM |
ssl_base_amount | Base Amount Original transaction amount sent in the request. Returned based on the terminal setup. |
ssl_card_type | Payment Type Valid values: DEBITCARD |
ssl_transaction_type | Transaction Type Value: VOID |
ssl_account_balance | Account Balance Available balance on the credit card. |
ssl_reference_number | Transaction Reference Number |
ssl_result_message | Transaction Result Message Refer to the Payment Card Response Codes section for an extensive list of possible returned messages. |
[Error] | Returned only if an error occurs. Refer to the Error Codes section for more information. |
errorCode | Error Code Typically, when the transaction failed validation or the request is incorrect. This will prevent the transaction from going to authorization. This is a numeric field. |
errorMessage | Error Message Detailed explanation of the error. This field may be changed based on merchant configuration in the user interface. |
errorName | Error Name Error name or reason for the error. |
Examples
Request
<txn>
<ssl_merchant_id>********</ssl_merchant_id>
<ssl_user_id>*********</ssl_user_id>
<ssl_pin>******</ssl_pin>
<ssl_transaction_type>dbvoid</ssl_transaction_type>
<ssl_txn_id>060320MB-2B27A92F-3998-47C3-9394-219272D9E93B</ssl_txn_id>
</txn>
Response
<txn>
<ssl_issuer_response>00</ssl_issuer_response>
<ssl_card_number>46**********5518</ssl_card_number>
<ssl_result>0</ssl_result>
<ssl_txn_id>060320MB-2B27A92F-3998-47C3-9394-219272D9E93B</ssl_txn_id>
<ssl_account_type>D</ssl_account_type>
<ssl_approval_code>780519</ssl_approval_code>
<ssl_amount>1.00</ssl_amount>
<ssl_txn_time>03/06/2020 09:56:09 AM</ssl_txn_time>
<ssl_base_amount>1.00</ssl_base_amount>
<ssl_card_type>DEBITCARD</ssl_card_type>
<ssl_transaction_type>VOID</ssl_transaction_type>
<ssl_account_balance>0.00</ssl_account_balance>
<ssl_reference_number>35769</ssl_reference_number>
<ssl_result_message>APPROVAL</ssl_result_message>
<ssl_partner_app_id>VM</ssl_partner_app_id>
</txn>