cancel
Showing results for 
Search instead for 
Did you mean: 

ARB and Phone Number

I am using the SDK .NET Authorize.net helper dll and trying to add a subscription.  All fields get added properly but the fax and phone number will not add.  Is there a problem with the code or the developer.

 

HELP Please.....

 

 

stockcer1
Member
3 REPLIES 3

Post your applicable code in a code box (fourth option from the left in Rich Text mode).

TJPride
Expert
  Dim subrequest = SubscriptionRequest.CreateWeekly("Freddy@ruble.com", "zzddsfzzzz", 185)

        '"fred@rublecorp.com", "Gold Standard", 19.5, 15)

        subrequest.CardNumber = "4111111111111111"      'Credit Card Information
        subrequest.CardExpirationMonth = 12
        subrequest.CardExpirationYear = 2012
        subrequest.BillingAddress = New AuthorizeNet.Address

        subrequest.BillingAddress.Fax = "12312312345"
        subrequest.BillingAddress.Phone = "12312312345"
        subrequest.BillingAddress.ID = "2344444"

        subrequest.BillingAddress.First = "Fred"
        subrequest.BillingAddress.Last = "Flinstone"
        subrequest.BillingAddress.State = "VA"
        subrequest.BillingAddress.Street = "123 Main Road"
        subrequest.BillingAddress.City = "Bed Rock"
        subrequest.BillingAddress.Company = "Rumble Corporation"
        subrequest.BillingAddress.Country = "USA"
        subrequest.BillingAddress.Zip = "00000"

        Dim gate As New SubscriptionGateway("XXXXXXXX", "XXXXXXXXXXXX", True)

        '//step 3 - make some money
        Dim response = gate.CreateSubscription(subrequest).SubscriptionID

 

It probably a problem in the .net dll. Download the source and fixes it.