cancel
Showing results for 
Search instead for 
Did you mean: 

Transaction Declined in eCheck payment method using CIM

Hi,

 

I am posting the below XML through cURL:

<?xml version="1.0" encoding="utf-8"?>
<createCustomerProfileTransactionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<merchantAuthentication><name>myname</name><transactionKey>myKey</transactionKey>
</merchantAuthentication><transaction><profileTransAuthCapture><amount>299</amount>
<customerProfileId>23839983</customerProfileId><customerPaymentProfileId>21816626</customerPaymentProfileId>
<customerShippingAddressId>21608633</customerShippingAddressId></profileTransAuthCapture></transaction>
</createCustomerProfileTransactionRequest>

 

This generates the error: [E00027] This transaction has been declined. 

 

When i use the Admin Panel to generate a transaction using this payment profile, it is successfuly done.

 

What should i do in XML to get it right.

 

Please help!

 

Thanks,

Php Dev

phpdev
Contributor
2 ACCEPTED SOLUTIONS

Accepted Solutions

On the test account, I think the echeck have a max of 100 dollars amount.

View solution in original post

RaynorC1emen7
Expert

Correct.  In the Sandbox, submitting an eCheck transaction over $100 will return a decline.  Anything under $100 will return a successful transaction.  This is designed to help you handle both responses correctly.

 

Richard

View solution in original post

3 REPLIES 3

On the test account, I think the echeck have a max of 100 dollars amount.

RaynorC1emen7
Expert

Correct.  In the Sandbox, submitting an eCheck transaction over $100 will return a decline.  Anything under $100 will return a successful transaction.  This is designed to help you handle both responses correctly.

 

Richard

Thanks !