balanced-payments refers to the libraries and RESTful API created by Balanced for processing credit cards and ACH payments.
0
votes
2answers
40 views
Error on account creation: “Card has already been associated with an account”
I am using TEST marketplace to add a new account for a credit card. Even though a new uri is generated for my credit card every time which I use to create new account, I get this error...
Account ...
0
votes
0answers
43 views
Balanced Payments - NoMethodError - Storing Credit Card - balanced_accout_uri
For my application, I am trying to integrate the tokenizing of credit card information for my users. I am referencing the docs here: See here.
When I Submit the Credit Card Form, I currently get the ...
0
votes
1answer
33 views
Balanced Payments - Routing Error
For my application, I have Users. I am trying to utilize Balanced Payments to allow users to save their credit card information for use at a later time. I have followed the two links below as guide ...
1
vote
1answer
44 views
Removing Empty Accounts in Balanced Payments
I am using the Balanced Payments PHP API to work in one of our Test Marketplaces. My concern about creating & removing Marketplaces was already answered by another StackOverflow topic (removed ...
1
vote
1answer
37 views
Deleting a card or reassigning to new account
We are in development and are having issues with cards and accounts. It appears that once a card is associated with an account, it's stuck there forever.
We have situations where clients create new ...
0
votes
1answer
35 views
Verifying card security code for returning customer
Is there a way to re-validate a card using the card security code? I'd like to offer users to login with Facebook or to remember their login otherwise and I want to add an additional step during ...
0
votes
0answers
49 views
Payment Gateway (Authorize.net) services for Marketplace [closed]
I am new to Payment Gateways and I could not find relevant information for this:
My website (B) would like to act as middle man marketplace in helping transfer money from (A) to (C). Think of it ...
0
votes
0answers
49 views
Integrate balanced payments in django app [closed]
What is the best way to integrate balanced payments in django app?
I am having trouble because I also enable csrf protection on my site.
I tried downloading the django-balanced app but that is ...
0
votes
0answers
128 views
balanced payments with django
Hi I installed the following python library:
https://github.com/balanced/balanced-python
When I use that library to charge a credit card as follows in my django code:
buyer = ...
0
votes
1answer
37 views
“No module named balanced_django.middleware”
I get the following error when I try to install
https://github.com/balanced/balanced-django
"No module named balanced_django.middleware"
I followed the instructions provided in the README file.
1. ...
0
votes
1answer
109 views
Rails form submit handler not being executed
I'm trying to integrate Balanced Payments to allow users to save their credit card information for use at a later time. The relevant view code and javascript files are as follows, but I'm having ...
7
votes
3answers
1k views
Stripe vs Balanced
I'm assisting in development of a backend for a painting service that works with many contractors across the US. We've been using Stripe, but the business has been paying the contractors using their ...
0
votes
1answer
124 views
balanced-payments How a user can update their credit card information?
If a user wants to update expiration date, can they do that? I tried using updateCard, but it only allows me to update 'meta' information but I intend to change expiration_year or expiration_month.
...
3
votes
1answer
76 views
How best to calculate sales tax in a marketplace (i.e., with multiple sellers)?
We process orders for multiple sellers (a typical "marketplace" scenario). Are there APIs or services that correctly compute sales tax for our use case?
I simply want to provide the sellers' (1 or ...
1
vote
1answer
191 views
Balanced: Creating accounts and processing payments issues
I'm using balanced-php and want to know:
How to send the cardholder's name with request ?
How to add account user name in $marketplace->createBuyer()?
How to retrieve a stored card information when ...
1
vote
1answer
71 views
Able to setup credit card as a backup source if checking account charge fails?
I'd like customers to submit checking account and credit card information. Is it possible that if a checking account charge fails, that a credit card is charged automatically? Is it possible to have ...
1
vote
1answer
85 views
Balanced Breaking Rspec
I am dropping in the balanced rspec tests for my ruby deployment and I'm getting a very strange error.
$ rspec spec
invalid option: --default_path=spec
full trace:
http://pastebin.com/K1B99iXT
3
votes
2answers
168 views
Add Merchant Details to “Buyer” Account
I am using the REST API with C# so I'm not sure how much it will help if I share my code.
I have an account whose only role is buyer and only has 1 credit card linked.
I would like to add the ...
2
votes
2answers
160 views
Updating credit card or allowing user to use different card in balanced payments
I am using balanced payments to allow users to purchase services on my site. When users are ready to checkout, they login/create an account on my site, then enter their credit card information. The ...
5
votes
1answer
409 views
Getting Faraday::Error::TimeoutError when creating card in Balanced gem
I am using the Balanced ruby gem in my rails app for payment integration.
I am submitting card information and getting valid response. Then I send card information to my controller and in that I am ...
2
votes
1answer
103 views
“Not permitted to perform create on holds”
I can create a card and create an account with that new card, but when I try to create a hold I receive a 401 error saying Not permitted to perform create on holds
I am using balanced.js to create ...
0
votes
0answers
103 views
Any plugins out there for balancedpayments? [closed]
this site https://balancedpayments.com/ seems to hit the nail on the head for a marketplace where users can review purchases before accepting payments. I am not a developer though so I don't know how ...
5
votes
2answers
292 views
How do Django forms, jquery, and Balanced Payments API interact to create buyer accounts?
I'm new to Balanced Payments and jquery, and relativley new to Django. Anyway, I'm trying to understand how to setup buyer and merchant Balanced Payment accounts using Django forms and the ...
3
votes
1answer
128 views
Reference existing buyers and merchants with Balanced
I was looking over the question (obtaining references to existing buyer and merchant accounts), which asked how to reference an account by email for ruby and was wondering how to do the same with php?
...
3
votes
2answers
218 views
“Cannot associate card with accounts on this marketplace” error when adding a card to an account.
I tokenized a card with Balanced.js, and am attempting to create a buyer with the buyer email and the tokenized card URI. I'm seeing this error:
Balanced::Conflict(409)::Conflict:: POST
...
1
vote
2answers
326 views
How we can process payment using balancedpayments?
When using the following code, I get an error:
$page = $_SERVER['REQUEST_URI'];
Settings::$api_key = $API_KEY_SECRET;
$marketplace = Marketplace::mine();
if ($page == '/')
{
// do nothing
}
elseif ...
2
votes
1answer
128 views
Balanced Payments PHP Client: query result triggers uncaught exception
I'm trying to query a marketplace for an account that matches an e-mail address, and when it can't find a result, it's raising an uncaught exception despite my try/catch block.
try {
$vendor = ...
2
votes
1answer
247 views
What's the best way to stub out network calls with Faraday in the Balanced Ruby client?
I'm not particularly familiar with Faraday's stubbing API, but from a casual inspection of that and the source of Balanced::Client, it looks like I'd need to be able to provide my own value for ...
3
votes
1answer
205 views
Balanced Payments - Documentation on obtaining references to existing buyer and merchant accounts
How would I get a reference to buyer and merchant accounts that have already been created?
I'm only finding examples for creating buyer and merchant accounts. I'm not finding any examples on getting ...
1
vote
1answer
144 views
Balanced duplicate bank account detection
I've create a new merchant account on Balanced via the API. I added a bank account to this account and then tokenized the exact same bank account and then added that again. I was expecting the second ...
-3
votes
1answer
271 views
Is a merchant required to link his bank account on Balanced Payments?
Does balanced payments require a merchant to have his bank account linked to the account to accept credits? What is the bare amount of information required to create a "user"? I want to have the ...
1
vote
1answer
143 views
Deleting cards from Balanced via Ruby gem
I'm marking cards as invalid by doing a PUT request with the is_valid parameter being set to false. Is is_valid ever set server side such as in the case of a card being declined by the processor? If ...
2
votes
1answer
625 views
Balanced Payments - Difference between Escrow accounts and (Marketplace) Merchant balances?
I'm new to Balanced and was wondering if you could define what exactly an Escrow Account is, and what is the difference between that balance and the Marketplace Merchant balance?
If I am the ...
1
vote
1answer
111 views
Balanced - Set card as default funding source
I have a buyer account with several, valid cards associated with it. According to Balanced's documentation the most recently added card is the default funding source. How do I set another, existing ...
2
votes
1answer
182 views
Is it possible to delete a Test Marketplace with Balanced Payments API?
I'm using balanced payments ruby api and accidentally created a couple of extra test marketplaces. While the api exposes a clear interface for creating a test marketplace, I can't seem to find any way ...
1
vote
1answer
88 views
Time lag creating merchant accounts via Balanced API
I just set up our first live merchant on Balanced Payments and am looking to credit them. In the account creation process, I received the redirect request in my code, I followed that.
I entered in ...
2
votes
1answer
143 views
When attempting to void a Hold on balanced payments that had been captured, why is the response a Hold with is_void == true?
When using the Balanced Payments ruby gem (https://github.com/balanced/balanced-ruby), and using the Balanced::Hold#void method on a Balanced::Hold instance that is captured, we are getting a ...
1
vote
2answers
119 views
Balanced payment php : Fatal error: Call to undefined method stdClass::createCard()
I've installed the balanced-php library, and I'm walking through the tutorial to create a buyer.
I'm receiving the following error when I try to create a card:
Fatal error: Call to undefined method ...
2
votes
1answer
601 views
Best practice for using Balanced API on mobile app
I am implementing new Balanced API for the payment, and starting to think about putting it on our mobile (native) apps.
I see they have a javascript library for sending credit card information ...
2
votes
1answer
113 views
What is the flow when the call to create a Balanced merchant account returns a non-success code?
Is a redirect code returned to the client with a URI that the client needs to be redirected to? Once the user completes additional verification on the Balanced website, how are the results transmitted ...
2
votes
1answer
164 views
JS error on balanced.init()
Uncaught TypeError: Cannot use 'in' operator to search for 'debug' in
undefined
a.balanced.initbalanced.js:1https://js.balancedpayments.com/v1/balanced.js
(anonymous function)
<script ...
