Card Number field missing for BMO Group - yodlee

We use Yodlee API to get the bank code 2483 BMO Financial Group (Canada) Bank.
The issue is that we are missing the card number field for authentication.
We have this issue only with BMO Group.
Can you please check this issue at the earliest and let us know what needs to be done.
Thank you

I was able to get the card number field for authentication for BMO using Yodlee's SDK.
Below is the list of fields which Yodlee's SDK returns for bank code 2483
1)Enter BMO Debit Card(this is the field where you need to enter the debit card number)
2)Enter BMO Credit Card(16 digit) (this is the field where you need to enter the credit card details)
3)Password
You can pass either of the 1st two fields to Yodlee.
Please try once using the Yodlee's sampleApp and if you are still seeing the issue, please raise a service request using Yodlee customer care(YCC) tool. And please mention your cobrandID, SOAP URL which you are using and we will look into it.

Related

Validation of tax number through Xero API

I have been struggling for some time whether there is a way to validate if given tax number is a correct one. I have a form where customers enter their invoice data, but we create the invoice in the system when the payment arrives on our bank account.
That means if the vat id is wrong, Xero will return an error when create an invoice. I would like to validate the tax number on invoice data form, instead.
I have checked the API documentation, but I couldn't find anything there. Am I missing something?
I have an app that sends the contact informatiuon to Xero, and validate the VAT numbers first.
I do this using the VIES VAT SOAP Service.
https://www.programmableweb.com/api/vies-vat
http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl
My code is in c#, so I just created a web reference via the wsdl and call it with the countryCode and vatNumber arguments.
You can also use https://tin-check.com/en/
They have an API that validate tax number for more than 100 countries
https://api.tin-check.com/
Migth be a good alternative solution.

How to test dummy credit card details in PayPal?

I'm setting up a WooCommerce website and I'm testing PayPal payments. I've tried the numbers on here: https://www.paypalobjects.com/en_US/vhelp/paypalmanager_help/credit_card_numbers.htm
I'm trying to test payment with a credit card without having a PayPal account, but doing it through PayPal's system.
Problem is, the list only includes card numbers, but the payment requires a CVV, correct address/location/country etc. and phone number. I've tried putting in random information for the rest but it throws and error, saying that its invalid.
Thankyou for any help in advance.

Yodlee FastLink API

We are building an iOS app that uses Yodlee API's to retrieve credit card transactions for our users.
Right now, we are using FastLink API to connect.
Once accounts are added to a users profile, is there a way to filter the transactions for a specific account by credit card? (For credit card accounts that have multiple cards associated with them)
For example: I have one credit card account with 4 cards associated with it. I am trying to retrieve only the information for a single card. Can this be done?
Yes, you can get a particular credit card account by calling Get Account Details API-https://developer.yodlee.com/apidocs/index.php#!/accounts/getAccountDetails
by passing the accountId and container as creditCard.
Hope this helps.

Can i use existing card.uri for future to pay payment in balance payments?

I am using Balance payment system to pay using credit cards in apps.
When user pay using credit cards in balance payments i get card.uri
If user want to use same credit card in future without enter card info can i use user.uri for that?
Means can i use same credit card for payment without enter credit card info again.
any one have a solutions?
Thanks in advance.
I solved my issue. See below code:
buyer = Balanced::Account.find(account_uri)
card = buyer.cards[0]
debit = buyer.debit(amount_in_sent, "MARKETPLACE.COM", :source_uri => card.uri)
Hope this help someone.
I have no idea what payment system you're using but from what you're writing it sounds like user.uri is a link that you can use when the same user is going to pay again. It's not that all payment data is stored but maybe some of it. Sometimes when a payment provider is "storing" your payment data you still have to re-enter the code on the back of the card because they don't store everything. So maybe user.uri is a user specific link to a page where the user only has to enter those digits. If this is the case then you need to store this user.uri for each and every user because each and every user will have their own unique user.uri. Don't mix them up because then you'll have a security problem.
I hope it gave you some clarity in how it might work.

How do I get gateway Authcode from Shopify?

Shopify receives and stores information received from the gateway after a payment is made. It can be viewed in the orders page right at the bottom under Order History section. The words "customer successfully paid..." is a hyperlink. That information contains the authcode apart from some other credit card information. I just want the authcode. The webhook does not send this information in the xml data. Can you retrieve this through the API or is this not allowed? Thanks
Any gateway-specific info is provided through the receipt parameter on the Transactions API. If the token you're looking for isn't there, it's not available.
Thanks for your assistance. Apparently Shopify won't provide that information due to PCI compliance reasons. The payment provider that does the credit card processing will only send one response to Shopify and I was hoping I could get them to send me a response as well but that was wishful thinking on my part. The finance team will just have to log into Shopify and see that information if they need it.