Tools for Web Developers

PerthWeb Developer : Products

Camtech Connect : Examples

TRANSACTION (ColdFusion example)

This sample code will attempt to process a transaction for $20.00:

      <cfx_pwcamtech gateway_address="127.0.0.1"
                     gateway_port="6002"
                     action="CAPTURE"
                     amount="2000"
                     card_expiry_m="10"
                     card_expiry_y="04"
                     card_number="424242424242"
                     merchantid="YourIDHere"
                     password="YourPasswordHere"
                     transaction_number="08110101"
                     cardholder_ip="0.0.0.0">

REFUND (ColdFusion example)

This sample code will attempt to process a refund for $44.95:

      <cfx_pwcamtech gateway_address="127.0.0.1"
                     gateway_port="6002"
                     action="REFUND"
                     amount="4495"
                     card_expiry_m="10"
                     card_expiry_y="03"
                     card_number="424242424242"
                     merchantid="YourIDHere"
                     password="YourPasswordHere"
                     transaction_number="08110101"
                     cardholder_ip="0.0.0.0">