Questions tagged [recurly]

Recurly provides a complete recurring billing system designed to remove all the headaches from subscription billing.

Recurly provides a complete recurring billing system designed to remove all the headaches from subscription billing.

See http://docs.recurly.com/ including API documentation is at http://docs.recurly.com/api

173 questions
0
votes
1 answer

Recurly custom invoice fields

Is it possible to add a custom field to Recurly Invoice or customize generated invoice in general? For example, one would like to add a Reference text-field. So when the user checks out the order, he can insert Reference name and then it would be…
0leg
  • 13,464
  • 16
  • 70
  • 94
0
votes
1 answer

How to get the recurly subscriber uuid to local db

I am using recurly gem. Now i am trying to do update the subscriber plan recurly. Here every subscriber have unique id. How to get that id to locally. I referred the following code. subscription =…
Mani
  • 41
  • 7
0
votes
0 answers

Recurly .Net API, Error creating subscription

We keep getting error creating a new subscription on recurly using .NET API. Below is our VB.Net Code Dim objSub As New Subscription(acct, plan, "USD", "") objSub.Create() This is the error we get. System.Net.WebException: The remote server…
vreboton
  • 41
  • 5
0
votes
1 answer

Accepting PayPal payments using the Recurly API

We use the RecurlyAPI. Currently PayPal payments are only available with the Recurly Hosted Payment Pages and Recurly.js. Are there any plans to make PayPal payments available through the API?
0
votes
1 answer

how to add a Recurly Billinginfo with the Python API?

If I create an account with the Recurly web interface, it has no billing info, I get an AttributeError when I try to access it. I can't seem to add an billing info to the account. I'm using the Python API version 2.2.4. I need to create a…
Karl Anderson
  • 1,798
  • 11
  • 18
0
votes
1 answer

Getting recurly token with incomplete information

To get a recurly token, you must submit an object with credit card and billing address data. What if the user would like to use the same credit card that is stored in recurly, but change his/her billing address? How can you use the recurly.token…
0
votes
1 answer

Does recurly count transaction for amount $0?

I have some questions regrading Recurly integration. As mentions recurly charges per transaction. If any transaction is done for $0.00 amount(In case of Free plan), would Recurly count this as a transaction & deduct the transaction charges ? Is…
Onkar Janwa
  • 3,892
  • 3
  • 31
  • 47
0
votes
1 answer

Recurly returning "invalid data" for new subscription creation

The code below is what we're using to try and create a new subscription for a user. If the user doesn't already exist, we create them using createAccount before running createSubscription. public function createAccount($recurlyId, $email,…
Tom Busby
  • 1,319
  • 2
  • 12
  • 25
0
votes
2 answers

Two forms - one submit button?

I have TWO forms on my website. Is it possible when I submit one of these, it will take form data from a particular field in the other form? I am using the Recurly system with PHP.
michaelmcgurk
  • 6,367
  • 23
  • 94
  • 190
0
votes
1 answer

Recurly PUT request working but returning server error

I am implementing the the Recurly API (http://docs.recurly.com/api) in C#/.NET and so far it has gone really well despite the lack of .NET support for V2. I have managed to implement the majority of the API successfully but am encountering an issue…
Ben Maxfield
  • 635
  • 7
  • 21
0
votes
0 answers

Recurly.js Integration: How to override the subscription value?

I am trying to achieve following: ?php require_once('recurly/lib/recurly.php'); // Required for the API Recurly_Client::$subdomain = 'xxxxxx'; Recurly_Client::$apiKey = 'xxxxxxxxxxxxxxxxxxx'; Recurly_js::$privateKey =…
0
votes
1 answer

How to pass a javascript global variable into requirejs, ruby on rails

I am implemented Recurly payments into a project, the project is using requirejs and there are requirejs 2 javascript files, 1 named 'front.js.coffee' for customer facing site and the second named 'admin.js.coffee' for the CMS. I have created a…
Dan Mitchell
  • 844
  • 2
  • 15
  • 34
0
votes
1 answer

recurly - ajax howto

I just integrated recurly.js with my website. Recurly.buildSubscriptionForm({ target : '#recurly_form', planCode:plan_code, successURL: 'payment_success', signature:sign_val }); now can I send request ajax…
Aniruddha
  • 3,513
  • 6
  • 27
  • 38
0
votes
1 answer

Including reopened class inside controller

I want to add custom methods to the Recurly::Account class by reopening it, and then use it in my controller. something like this: #reopen class class Recurly::Account #my custom method def my_meth_1 end end class MyController def index …
mansk
  • 101
  • 2
  • 7
0
votes
1 answer

Rails and Recurly credit card form not updating expiration month and year info

I was creating a form to interact with Recurly on Rails. I have this view and this form:

<%= t('payments.edit') %>

<%= render(:partial => 'shared/new_recurly_form', :locals => {:success_url => "#{APP_URL}#{users_credit_card_path}"})…
guillemhs
  • 330
  • 1
  • 2
  • 17
1 2 3
11
12