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
2 answers

Recurly: How i can Update the Recurly subscription & Billing Token in one request

I've a free plan among some other plans. when user signup with Free Plan I create the Account in RECURLY without subscription & Billing Information. When user tries to upgrade to some paid plan. I create a subscription. But with subscription, I…
0
votes
1 answer

Recurly thowing exception when using with Google app engine

I'm trying to integrate recurly with Google appengine with following dependencies http://mvnrepository.com/artifact/com.ning.billing/recurly-java-library/0.2.4 and default async-http-client 1.7.20 I'm getting the following…
Rama Krishna
  • 85
  • 1
  • 8
0
votes
1 answer

Recurly authentication error

im using Recurly client maven dependency and im getting error in the recurlyclient.java the error says that "java.lang.NoSuchMethodError: …
Rama Krishna
  • 85
  • 1
  • 8
0
votes
1 answer

api-error: Please configure a PayPal account with reference transactions in Recurly before accepting PayPal payments

We use the Recurly.js. Now PayPal payments pro are available for both Recurly Hosted Payment Pages and Recurly.js.I integrate Paypal as per given docs Recurly.js and Paypal Payment Pro Now facing error >>> api-error: Please configure a PayPal…
Ashish Chaturvedi
  • 1,352
  • 3
  • 13
  • 37
0
votes
1 answer

Need server side endpoints for doing transactions with recurly

I was trying to integrate recurly with my application after i got my token id, i need to the recurly endpoints so that i can use my token id and complete the transaction. Can someone help me with the available API operations with recurly. Thank you
Rama Krishna
  • 85
  • 1
  • 8
0
votes
1 answer

Can we get subscription id in Return URL after payment success using hosted page in recurly?

I am using recurly hosted page for billing.I would like to redirect to my site after successful payment,In return page i want subscription id.Is that possible in recurly ?
Yogesh
  • 33
  • 4
0
votes
1 answer

How can i pass add-on parameters to hosted page API?

I want pass add-on parameters(add-on quantity,code etc ) to hosted page API.Like we're passing quantity of plan. https://:your_subdomain.recurly.com/subscribe/gold?quantity=5
Yogesh
  • 33
  • 4
0
votes
2 answers

Recurly: Get the verification transaction associated to the "billing info update"

What I want to do is to get the verification transaction associated to an update on the a billing info as soon as it happens: As far I can see when such event occurs, the recurly back-end raise only a "billing_info_updated" webhooks without giving…
0
votes
1 answer

How to get tax settings and rates from recurly payment method

I have setup tax for US and New Zealand in Recurly app. I'm using PHP one-time transaction in my magento platform. I have not setup tax in magento since i have setup in Recurly itself(If i setup in magento, tax is calculated in Magento as well as…
Karthi Skb
  • 322
  • 4
  • 15
0
votes
1 answer

Viewing Monthly Recurring Revenue (MRR) for an Account in Recurly

Recurly's Salesforce integration adds a field in the Subscription table called Monthly Recurring Amount. Where in Recurly's API is this value exposed for accounts or account subscriptions?
Zeimyth
  • 1,389
  • 12
  • 19
0
votes
1 answer

Custom stored data for Recurly form submission

I want to add custom fields to my form submission to Recurly, essentially using them as my database. That way, I could avoid creating a user / prodcuct model and just punt to Recurly's service. Is this possible?
daino3
  • 4,386
  • 37
  • 48
0
votes
2 answers

Preview taxes for Recurly

I'm using the Recurly v3 JavaScript API to fetch pricing info for a subscription plan: https://docs.recurly.com/js/ Specifically, I'm using the Pricing API .attach (https://docs.recurly.com/js/#pricing) to resolve the price and tax information.…
sethcall
  • 2,837
  • 1
  • 19
  • 22
0
votes
1 answer

Recurlyv3 API doesn't find any data associated with valid token id

This is the essential bit of PHP: // Add subscription $subscription = new Recurly_Subscription(); $subscription->plan_code = $planCode; $subscription->currency = 'USD'; $subscription->quantity = 1; if ($couponCode != "") {…
0
votes
2 answers

Recurly js v3 Uncaught TypeError: Cannot read property 'config' of undefined

I am new to Recurly, I have setup a simple implementation to build on here http://unzipped.wpengine.com/recurly-integrate/ (you can see everything, it is html and a js file called recurly-integration.js which is added straight after the main…
Liam Bailey
  • 5,879
  • 3
  • 34
  • 46
0
votes
1 answer

How to test Recurly in Ruby, possibly using VCR

I have a rails application that uses Recurly for its transactions. I am trying to write automated tests for some of the helper functions that I have written. A super simple example of a function... def status_for_display …
Zack
  • 2,377
  • 4
  • 25
  • 51