Hey,
I am reaching out to this community to help me create a form to speak with my gateway. I am trying to basically create a form that handles recurring and subscriptions on certain products.
http://redfinpos.com/wp-content/uploads/RedFin-Developer-Manual-V.2.07.0415-a.pdf
https://secure.redfinnet.com/admin/ws/recurring.asmx?op=AddRecurringCreditCard
This is all the information I have and I have created the form I want to use in just HTML. But I am not sure how to connect with my gateway. To ask and get everything.
This is a learning experience for me and would love any feedback please!
This is my code for the form.
I know I need to some how tokenize all this but have no idea how.
<div class="form-row"> <label> <span>Username</span> <input type="text" size="20"="Username-Admin"> </label> </div> <div class="form-row"> <label> <span>Password</span> <input type="text" size="20" ="Password-Admin"> </label> </div> <div class="form-row"> <label> <span>Vendor</span> <input type="text" size="20" ="vendor-id"> </label> </div> <div class="form-row"> <label> <span>CustomerName</span> <input type="text" size="20" ="CustomerName"> </label> </div> <div class="form-row"> <label> <span>CustomerID</span> <input type="text" size="20" ="CustomerID"> </label> </div> <div class="form-row"> <label> <span>ContractID</span> <input type="text" size="20" ="ContractID"> </label> </div> <div class="form-row"> <label> <span>BillAmt</span> <input type="text" size="20" ="BillAmt"> </label> </div> <div class="form-row"> <label> <span>TotalAmt</span> <input type="text" size="20" ="TotalAmt"> </label> </div> <div class="form-row"> <label> <span>StartDate <Date></Date></span> <input type="text" size="20" ="StartDate"> </label> </div> <div class="form-row"> <label> <span>BillingPeriod</span> <input type="text" size="20" ="BillingPeriod"> </label> </div> <div class="form-row"> <label> <span>BillingInterva;</span> <input type="text" size="20" ="BillingInterval"> </label> </div> <div class="form-row"> <label> <span>CcAcountNum</span> <input type="text" size="20" ="CreditCardAmountNumber"> </label> </div> <div class="form-row"> <label> <span>CcExpDate</span> <input type="text" size="20" ="CreditCardExpirationDate"> </label> </div> <input type="submit" class="submit" value="Submit Payment"> </form>
01-11-2017 04:17 PM - edited 01-11-2017 04:22 PM
Hello @domthegrom
Are you looking to connect with the Authorize.Net Payment Gateway? The documentation provided in your post is for another product.
Richard
01-11-2017 04:40 PM