You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's likely I'm calling something wrong, however, the following is returning only expired subscriptions as intended, but not only those updated between the date range specified. I'm having the same issue using created_at, any suggestions?
Upgrade to a version of the package that uses version 2.4 of the recurly API. begin_time/end_time features are supported starting from that version; earlier versions of the API will just ignore the begin_time and end_time params.
It's likely I'm calling something wrong, however, the following is returning only expired subscriptions as intended, but not only those updated between the date range specified. I'm having the same issue using created_at, any suggestions?
var filter = {
state: 'expired',
sort: 'updated_at',
order: 'desc',
begin_time: '2016-11-01',
end_time: '2016-11-03'
};
recurly.subscriptions.list(function(output){
return resolve(output);
}, filter);
});
The text was updated successfully, but these errors were encountered: