Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Overview

...

FieldRequiredMax LengthDescription
x_cc_typeFor cc transactions: Optionala 2Card Types:
  • VS – Visa
  • MC – MasterCard
  • AX – Amex
  • DC – Discover
x_cc_nameOptionala 32Contains the name located on the credit card
x_cc_numberConditionaln 22Contains the credit card number.

Can send the x_payment_token_id to reference an existing Credit card on file.

x_cc_expConditionaln 4Contains the expiration date for the credit

card. Format: MMYY Can send the x_payment_token_id to reference an existing Credit card on file

x_cc_cvvOptionaln 4Three or Four digit validation number for the credit card
x_ticket_idConditionaln 32Ticket ID of a transaction previously approved by the gateway. This is required for the following transaction types: DS (capture), CR (refund), VO (void)
x_authorizationConditionaln 32Authorization code of a transaction previously authorized by the gateway. This is required for the following transaction types: OF (offline force)
x_trackdataOptionaln 4Combined Track1 and Track2 data from credit card POS device.

Example Requests

Credit Card AUTH-CAPTURE

Request

...

x_tokenOptionalans ..A valid 3DS (3D Secure) payment token, issued by a trusted provider offering payment tokenization, must be presented in this field. The x_token field value must be included along with the other conditionally required fields for Credit Card type transactions (x_cc_number, x_cc_exp and x_cc_cvv).

Example Requests

Credit Card AUTH-CAPTURE

Request

POST https://secure.gotobilling.com/os/system/gateway/transact.php
Content-Type: application/x-www-form-urlencoded

merchant_id = "123456"
merchant_pin' = "gatewayPin"
x_transaction_type = "ES"
x_customer_id = "27500000001"
x_first_name = "Test"
x_last_name = "Account"
x_zip = "55555"
x_amount = "36.00"
x_cc_number = "4111111111111111"
x_cc_name = "Ester Tester"
x_cc_exp = "1215"

...

<ResponseData>
<status>D</status>
<order_number>122879-20081217198384</order_number>
<term_code>0</term_code>
<tran_amount>1.01</tran_amount>
<tran_date>20081217</tran_date>
<tran_time>131643</tran_time>
<invoice_id>44444</invoice_id>
<description>CHEXDIRECT|DECLINE CHECK|3 UNPAIDS (ALL)|UNPAID AMT= 35|PHN 800-238-5888|EXPRESS RECOVERY</description>
</ResponseData>


Level

...

1 Verification Information

Level 2 verification will return some 1 ACH verification compares the given account information against a neg file database. Results for accounts that do not contain any negative data will return an AUTH NUM indicating that no negative events have been recorded for the account. Additional info will be passed in the <description> field.

Additional Info

valuedescription
History of IneligibleAccount does have a reported history and there is known transaction history on the account.
Routing Number is InvalidInvalid bank routing number
History of UnauthorizedAccount does not have a reported history or returns for Account Closed, Invalid Account, No account found, or Unable to locate, the routing number and account format are verified and there is no known transactional history on the account.

Wrong Account Structure

The account identified as suspicious format
Not populatedAccount does not have a reported history or returns for Account Closed, Invalid Account, No account found, or Unable to locate, the routing number and account format are verified, and there is known transactional history on the account.

Format Accept

<auth_code>
AUTH NUM
</auth_code>

Example Accept
<auth_code>
AUTH NUM 6847027C
</auth_code>

Format Warning/Reject

<description>
ADDITIONAL INFO
</description>

Example Warning/Reject

<description>
HISTORY OF UNAUTHORIZED
</description>


Debug and Test ACH Information

decisionvaluebank namerouting numberaccount number
ACCEPTValid (AUTH NUM)Bank of America05320098311101010
WARNINGHistory of IneligibleBank of America22607803613590100098321
WARNINGRouting Number is InvalidBank of America05320098311101012
DECLINEHistory of UnauthorizedBank of America22607803613590100098319
WARNING

Wrong Account Structure

Bank of America05320098311101015

Level 2 Verification Information

Level 2 verification will return some additional information with the verification AUTHNUMAUTH NUM. This additional info will be passed with the AUTHHUM AUTH NUM in the <description> field with a pip ("|") delimiter.

Additional Info

valuedescription
Non-Participating: Negative InformationThis customer's bank does not participate in the Bank ACH Verification system. However, the normal negative database has negative information (returned checks) that are in the system.
ACH UnavailableThis merchant's bank account is not able to be debited via the ACH system.
Non-Participating: No InfoThis customer's bank does not participate in the Bank ACH Verification system and the customer's bank account has not been seen in the negative database system.
Account Closed or Neg StatusThe customer's bank participates in the Bank ACH Verification system and is reporting this account as Closed or in a state that will result in the ACH transaction being returned.
Account GoodThe customer's bank participates in the Bank ACH verification system and is reporting this account as open and in good standing.

Format

<description>
AUTH AUTHNUMNUM|ADDTIONALINFOADDITIONAL INFO
</description>

Example

<description>
AUTH NUM 53793041|Non-Participating: No Info
</description>

...