Direct Payment Integrator V6 - Online Help
Direct Payment Integrator V6
Questions / Feedback?

Sale Method

Sends a Sale transaction to the host.

Syntax

[VB.NET]
Public Sub Sale()
[C#]
public void Sale();

Remarks

A basic EBT sale transaction is similar to a Debit transaction, in that a CardPIN and CardKSN are required in addition to swiped or manually entered Card data. A Sale transaction removes funds from the EBT cardholder's account for the TransactionAmount indicated. This transaction is automatically added to the current open batch, and will be settled after the current batch is released with the PTechHostSettle component.

The EBT card is specified by the Card property. Both swiped and manual-entry are supported.

The Code and Text fields indicate whether this transaction was successful. For example:

Manually-keyed Cash Benefits transaction with cash back:

component.Card = new CCCard("9999999800002773", 12, 2009)
component.CardPIN = "623F36B53CC18393"
component.CardKSN = "000000008F000021"
component.BenefitType = btCashBenefits
component.TransactionAmount = "25.00" '$20 purchase with $5 cash back  
component.CashBack = "5.00"
component.Sale()

Swiped Food Stamp transaction:

component.Card = new CCCard("9999999800002773=09121015432112345678", dsTrack2)
component.CardPIN = "623F36B53CC18393"
component.CardKSN = "000000008F000021"
component.BenefitType = btFoodStamps
component.TransactionAmount = "25.00"  'Cash back not supported for food stamps!
component.Sale()

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0