Login

    Register

PROJECT CATEGORIES

 

Authorize.net Recurring Billing API CFC
Project Home Blog Forums Known Issues Contact Project

Author: Ryan Stille (All RIAForge projects by this author)
Last Updated: August 18, 2007 1:13 AM
Version: .2
Views: 7517
Downloads: 379
License: Apache License, Version 2

Description:

This CFC allows you to easily make calls to Authorize.Net's Recurring Billing API. It provides three methods: createSubscription(), updateSubscription(), and cancelSubscription().

The readme.htm file has fairly detailed instructions but here is a simple overview::

<cfset PaymentGateway = CreateObject("component","AuthorizeNetRecurring").init(loginname = "AuthNetLoginName", transactionKey = "YourTransactionKey",
mode = "live or test")>

<cfinvoke component="#PaymentGateway#" method="createSubscription" returnvariable="result">
   <cfinvokeargument name="startDate" value="#DateFormat(Now(),"yyyy-mm-dd")#">
   <cfinvokeargument name="customerEmail" value="#email#">
   etc....
</cfinvoke>

Requirements:

CFMX
Authorize.Net account

Issue Tracker:

There are no issues for this project.

To enter issues for this (or any other) project, you must be logged in.

Subversion Access:

You may access this project's Subversion repository with your client here: http://svn.riaforge.org/AuthorizeNetRecurring.

You may download the latest set of files from Subversion as a zip file.

Anonymous users have read access to the repository while the administrator has write access.

This project is sharing its code via Subversion. Subversion is an open source source control method. You may find more information about Subversion here: http://subversion.tigris.org/