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

Create subscription with addon using node-recurly

Using node-recurly, I can create a subscription object and pass it to recurly.subscriptions.create call: const subscription = { plan_code: plan.code, currency: 'USD', account: { account_code: activationCode, …
Alex Polkhovsky
  • 3,340
  • 5
  • 29
  • 37
1
vote
2 answers

Failed to connect to Recurly Could not resolve host

I'm currently developing a plugin for wordpress that uses recurly for subscription. I already uploaded it to our site and resume coding there. I'm already done with the checkout page and was in the middle of developing the accounts page when I run…
K.Martinez
  • 11
  • 5
1
vote
2 answers

Recurly subscription non-prorated

Currently, I have a recurly subscription setup to start every Friday. I am trying to create a recurly subscription that is NOT pro rated. The customer pays £33 a week for access (they are sent an item in the post), renewed every Friday. I would like…
Rob
  • 1,576
  • 3
  • 22
  • 52
1
vote
1 answer

How to get coupon detail from Recurly_CouponRedemptionList

I'm using Recurly API 2.7, the latest version. I have trouble in fetching coupon detail from invoice object. I want to get coupon object of first Redemption object in this result. $i = $ss->invoice->get(); if ($i->redemptions) { $r =…
Paul Z.
  • 855
  • 1
  • 10
  • 27
1
vote
1 answer

Recurly JS API version 2.7.0 - Could not verify Recurly's SSL certificate

I'm running xampp on my localhost Windows 10 Apache/2.4.7 PHP 5.5.9 When I try to call Recurly PHP API (API version = 2.7.0), it returns this error Could not verify Recurly's SSL certificate. https://github.com/recurly/recurly-client-php It…
Paul Z.
  • 855
  • 1
  • 10
  • 27
1
vote
5 answers

PHP - How to calculate one month or one year later

I'd like to calculate next billing date of Recurly plan in PHP. There are 2 types of billing cycle: yearly | monthly. I tried to use DateTime and DateInterval classes, but didn't get expected results.
Paul Z.
  • 855
  • 1
  • 10
  • 27
1
vote
0 answers

Getting number of subscription upgrades with API

In Recurly there is option for upgrading or downgrading a subscription. I wonder if it's possible to get a list of upgrades or downgrades through the API. Or any way to detect those changes. I did search the docs and php client library. It looks…
Can Vural
  • 2,222
  • 1
  • 28
  • 43
1
vote
1 answer

NetworkError: 403 Forbidden - https://js.recurly.com/v4/recurly.js loading recurly.js

I have implemented the recurly.js form but facing problem in loading recurly.js. Following is my code:
Pritika
  • 296
  • 1
  • 17
1
vote
1 answer

How do you get the Host Code parameter from a Recurly failed transaction?

When using the Recurly API in PHP $transaction = Recurly_Transaction::get($uuid); the $transaction variable doesn't contain the HOST CODE that you can find on the transaction details page under "Parameters" at…
PHPDave
  • 904
  • 1
  • 7
  • 15
1
vote
1 answer

Recurly pdf invoice retrieving with JavaScript and Node.js (Meteor)

We are developing an app with Recurly integration and trying to use it PDF Invoice function. The app is based on Node.js (Meteor platform). It receives correct answer from Recurly with binary file: But I can't correctly save it. I've tried two…
1
vote
1 answer

Formatting Recurly.js input fields

I am building a form to process a payment via Recurly. The non-recurly.js fields use Bootstrap for their layout. I can style the containing DIV to get the border and border-radius to match the Bootstrap fields but Bootstrap sets padding on input…
Michael Fromin
  • 13,131
  • 2
  • 20
  • 31
1
vote
2 answers

Styling Recurly.js input fields

Does anyone know how to directly style an input field generated by recurly.js? It injects input fields into the page through iframes. Their documentation gives classes that are added the the divs or spans (whatever you use) surrounding the iframe…
GrantW
  • 98
  • 5
1
vote
2 answers

Recurly Webhook ID

I am trying to prevent Recurly Webhooks from being executed multiple times if they are retried incorrectly (i.e.: when builds go out and servers time out occasionally). I see in the dashboard that webhooks have unique IDs, but these don't seem to…
theleanmc
  • 33
  • 4
1
vote
0 answers

Testing Recurly.js locally

I am trying to test Recurly.js locally. When I call recurly.configure("...my_public_key...) I get an error. Uncaught SecurityError: Blocked a frame with origin "https://api.recurly.com" from accessing a frame with origin "http://localhost:3000". …
yankeyhotel
  • 196
  • 4
  • 18
1
vote
2 answers

How to know if a Recurly subscription will renew at the end of its period?

When viewing an active, non-renewing subscription on the Recurly website, such as https://xxxxxx.recurly.com/subscriptions/xxxxxxxxba354d5b84812419xxxxxxxx the Recurly website shows info like this: Status: Active Start Date: Feb 9, 2016 7:44 PM…
Totes McGoats
  • 111
  • 1
  • 3
1 2
3
11 12