SmartPayments
Click here for a complete list of operations.
ProcessCreditCard
Process ePayment Credit Card Transaction. Valid input values are: UserName & Password - Assigned by the payment gateway, TransType - Auth | Sale | Return | Void | Force | Capture | RepeatSale | CaptureAll | Adjustment, CardNum - Payment Card Number, ExpDate - Payment Card Expiration Date in MMYY format, MagData - Payment Card Track II Mag-Stripe Data, NameOnCard - Cardholders Name, Amount - Amount in DDDDD.CC format, InvNum - Invoice Tracking Number, PNRef - Reference Number Assigned by the payment gateway, Zip - CardHolder's billing ZipCode used with AVS, Street - CardHolder's billing Street Address used with AVS, CVNum - CardHolder's Card Verification Number used with CV Check, ExtData - Extended Data in XML, Valid Values are: CustomerIDAuthCode - Original Authorization Code, EntryMode - CardNum source: Manual | MagneticStripe | ICC | Proximity, CVPresence - CVNum presence: None | NotSubmitted | Submitted | Illegible | NotPresent, CustCode - Customer Code used with Commercial Cards, TipAmt - Tip Amount TaxAmt - Tax Amount used with Commercial Cards, SequenceNum - Sequence Number used with Recurring Transactions, SequenceCount - Sequene Count used with Recurring Transactions, ServerID - Server ID, Timeout - Timeout Value in Seconds (default=40), TrainingMode - Training Mode T or F, Force - Force Duplicates T or F, RegisterNum - Register Number, PONum - Purhcase Order Number, City - the City of the CardHolder's billing address, BillPayment - Bill payment indicator T or F, Authentication - Verified by Visa and UCAF programs:
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /SmartPayments/transact.asmx HTTP/1.1 Host: secure.redfinnet.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://TPISoft.com/SmartPayments/ProcessCreditCard" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ProcessCreditCard xmlns="http://TPISoft.com/SmartPayments/"> <UserName>string</UserName> <Password>string</Password> <TransType>string</TransType> <CardNum>string</CardNum> <ExpDate>string</ExpDate> <MagData>string</MagData> <NameOnCard>string</NameOnCard> <Amount>string</Amount> <InvNum>string</InvNum> <PNRef>string</PNRef> <Zip>string</Zip> <Street>string</Street> <CVNum>string</CVNum> <ExtData>string</ExtData> </ProcessCreditCard> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ProcessCreditCardResponse xmlns="http://TPISoft.com/SmartPayments/"> <ProcessCreditCardResult> <Result>int</Result> <RespMSG>string</RespMSG> <Message>string</Message> <Message1>string</Message1> <Message2>string</Message2> <AuthCode>string</AuthCode> <PNRef>string</PNRef> <HostCode>string</HostCode> <HostURL>string</HostURL> <ReceiptURL>string</ReceiptURL> <GetAVSResult>string</GetAVSResult> <GetAVSResultTXT>string</GetAVSResultTXT> <GetStreetMatchTXT>string</GetStreetMatchTXT> <GetZipMatchTXT>string</GetZipMatchTXT> <GetCVResult>string</GetCVResult> <GetCVResultTXT>string</GetCVResultTXT> <GetGetOrigResult>string</GetGetOrigResult> <GetCommercialCard>string</GetCommercialCard> <WorkingKey>string</WorkingKey> <KeyPointer>string</KeyPointer> <ExtData>string</ExtData> </ProcessCreditCardResult> </ProcessCreditCardResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /SmartPayments/transact.asmx HTTP/1.1 Host: secure.redfinnet.com Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ProcessCreditCard xmlns="http://TPISoft.com/SmartPayments/"> <UserName>string</UserName> <Password>string</Password> <TransType>string</TransType> <CardNum>string</CardNum> <ExpDate>string</ExpDate> <MagData>string</MagData> <NameOnCard>string</NameOnCard> <Amount>string</Amount> <InvNum>string</InvNum> <PNRef>string</PNRef> <Zip>string</Zip> <Street>string</Street> <CVNum>string</CVNum> <ExtData>string</ExtData> </ProcessCreditCard> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ProcessCreditCardResponse xmlns="http://TPISoft.com/SmartPayments/"> <ProcessCreditCardResult> <Result>int</Result> <RespMSG>string</RespMSG> <Message>string</Message> <Message1>string</Message1> <Message2>string</Message2> <AuthCode>string</AuthCode> <PNRef>string</PNRef> <HostCode>string</HostCode> <HostURL>string</HostURL> <ReceiptURL>string</ReceiptURL> <GetAVSResult>string</GetAVSResult> <GetAVSResultTXT>string</GetAVSResultTXT> <GetStreetMatchTXT>string</GetStreetMatchTXT> <GetZipMatchTXT>string</GetZipMatchTXT> <GetCVResult>string</GetCVResult> <GetCVResultTXT>string</GetCVResultTXT> <GetGetOrigResult>string</GetGetOrigResult> <GetCommercialCard>string</GetCommercialCard> <WorkingKey>string</WorkingKey> <KeyPointer>string</KeyPointer> <ExtData>string</ExtData> </ProcessCreditCardResult> </ProcessCreditCardResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /SmartPayments/transact.asmx/ProcessCreditCard?UserName=string&Password=string&TransType=string&CardNum=string&ExpDate=string&MagData=string&NameOnCard=string&Amount=string&InvNum=string&PNRef=string&Zip=string&Street=string&CVNum=string&ExtData=string HTTP/1.1 Host: secure.redfinnet.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <Response xmlns="http://TPISoft.com/SmartPayments/"> <Result>int</Result> <RespMSG>string</RespMSG> <Message>string</Message> <Message1>string</Message1> <Message2>string</Message2> <AuthCode>string</AuthCode> <PNRef>string</PNRef> <HostCode>string</HostCode> <HostURL>string</HostURL> <ReceiptURL>string</ReceiptURL> <GetAVSResult>string</GetAVSResult> <GetAVSResultTXT>string</GetAVSResultTXT> <GetStreetMatchTXT>string</GetStreetMatchTXT> <GetZipMatchTXT>string</GetZipMatchTXT> <GetCVResult>string</GetCVResult> <GetCVResultTXT>string</GetCVResultTXT> <GetGetOrigResult>string</GetGetOrigResult> <GetCommercialCard>string</GetCommercialCard> <WorkingKey>string</WorkingKey> <KeyPointer>string</KeyPointer> <ExtData>string</ExtData> </Response>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /SmartPayments/transact.asmx/ProcessCreditCard HTTP/1.1 Host: secure.redfinnet.com Content-Type: application/x-www-form-urlencoded Content-Length: length UserName=string&Password=string&TransType=string&CardNum=string&ExpDate=string&MagData=string&NameOnCard=string&Amount=string&InvNum=string&PNRef=string&Zip=string&Street=string&CVNum=string&ExtData=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <Response xmlns="http://TPISoft.com/SmartPayments/"> <Result>int</Result> <RespMSG>string</RespMSG> <Message>string</Message> <Message1>string</Message1> <Message2>string</Message2> <AuthCode>string</AuthCode> <PNRef>string</PNRef> <HostCode>string</HostCode> <HostURL>string</HostURL> <ReceiptURL>string</ReceiptURL> <GetAVSResult>string</GetAVSResult> <GetAVSResultTXT>string</GetAVSResultTXT> <GetStreetMatchTXT>string</GetStreetMatchTXT> <GetZipMatchTXT>string</GetZipMatchTXT> <GetCVResult>string</GetCVResult> <GetCVResultTXT>string</GetCVResultTXT> <GetGetOrigResult>string</GetGetOrigResult> <GetCommercialCard>string</GetCommercialCard> <WorkingKey>string</WorkingKey> <KeyPointer>string</KeyPointer> <ExtData>string</ExtData> </Response>