ANSWERED

Cancel pending payment

How do I cancel a pending payment
ANSWERED

CRedit Card info for test

I want to test the integration with the api anyone have a test credit card info to test subscriptions
ANSWERED

Bad Request on Products!!!!

I am receiving a BadRequest response when I try to get my products. { "errors": [ { "code": "Controller_Invalid_Page_Number", "name": null, "description": "Page number '0' is incorrect. Equal or more than one expected" } ] }
ANSWERED

Pay Per Delete

Hello, I wanted to know if you could help me configure out how to set up Pay Per Delete?
ANSWERED

Company Affiliate Link?

Hi - I have colleagues with companies that are interested in starting with Billsby. Do you all offer referral payouts or custom links to track companies we bring in to you?
ANSWERED

Randall Holmes

I need a credit card. Can't anyone help me out??
ANSWERED

curl request coming back with no response

Hi billsby community, I am receiving a blank response with a 0 return status using linux to submit a curl request using the API, here is the example of my curl request on linux below: [root@localhost ~]# curl --request GET \ --url https://public.billsby.com/api/v1/rest/core/companyDomain/products \ --header 'ApiKey: MY_API_KEY_HERE' \ --header 'accept: application/json' [root@localhost ~]# Any idea as to why I'm receiving a blank but with a 0 response code from CURL. Any advice would be appreciated as I'm new to billsby. Thanks
ANSWERED

Add feature tags API not working

Hi, has anyone managed to use the add feature tags API endpoint? (https://support.billsby.com/reference/post-subscription-tags) The documentation page doesn't work as it enters subscriptionUniqueIds as a string rather than (I assume) an array of strings, but submitting an array of strings doesn't appear to work either. I get an empty 200 successful response and it looks like nothing happens. Has anyone else encountered this issue? Thanks
ANSWERED

Styling Credit Card Tokenizer form fields

We are using the Card Tokenizer on our site and the fields don't quite match those of the outer form, primarily font sizing. It would also be nice to be able to specify 'pretty' format for the credit card number: 4111 1111 1111 1111 instead of the default: 4111111111111111 I know Billsby tokenizer wraps Spreedly's tokenizer, is it possible to expose the set* (setNumberFormat, setStyle, etc.) methods of spreedly? Thanks Alun
ANSWERED

Updating add-ons in a subscription using the API

I am trying to update the add-on counts in an existing subscription using the API. I am using this API enpoint PUT: https://public.billsby.com/api/v1/rest/core/{{companyDomain}}/subscriptions/{{subscriptionUniqueId}}/plan and this payload: { "planChangeType": 1, "planId": {{planId}}, "cycleId": {{cycleId}}, "addOns": [ { "addOnId": {{addonId}}, "quantity": 12 } ], "issueRefund": false } I get a 400 'Bad Request' response with this message: { "errorCode": "Subscription_Change_Subscription_Plan_Billing_Error", "errorMessage": "Subscription_Not_Found" } I have double checked the subscriptionUniqueId is correct, and also tried using the subscriptionId instead, but still get the same error. Some advice on updating add-on quantities via the API would be appreciated. Thanks