Yodlee API, Search for Sites in a country - api

I would like to be able to restrict search to Financial Institutions that operate in a country.
We are a FinTech company operating in Australia and would like to initially find Financial Institutions relevant to our Australian clients

This can be done, in your dedicated environment. You should talk to Yodlee support team. Yodlee support team will be able to explain more about in what scenarios it can happen.

Related

What is Google's Cloud Speech API's retention policy?

When my users record their voice using the Google's Cloud Speech API, how can I give them the option to delete them later? I tried to search everywhere but haven't found it yet. Google seems to allow this within their Assistant App, but what about developers building something similar?
Similarly, what is the retention policy for these recordings? I need to be able to tell my users something, too.
Why not read their terms?
Regarding customer deletion of data (section 6.1)
Google will enable Customer to delete Customer Data during the Term in a manner consistent with the functionality of the Services. If Customer uses the Services to delete any Customer Data during the Term and that Customer Data cannot be recovered by Customer, this use will constitute an instruction to Google to delete the relevant Customer Data from Google’s systems in accordance with applicable law. Google will comply with this instruction as soon as reasonably practicable and within a maximum period of 180 days, unless EU or EU Member State law requires storage.
It does not state a retention policy, though you should be able to contact them and get a definitive answer.

CRM system or what?

Just need to get something clear.
A GUI for employees managing a large scale of data, like facebook-users or whatever. Is that a form of CRM, or is CRM only business-facing?
In that case, what is that software category named?
CRM is a concept that describes Customer Relationship Management. So it can be used to describe any process that tracks an interaction with a person. Most typically between a company and a customer.
A classic example is that of a bank. You ring the bank on Monday and ask about a loan. They send you information in the post. You ring the bank on Friday. They should know that they spoke to you on Monday about loans and sent you a letter.
This may or may not use some software, although its unlikely they could just be writing everything down.
Wiki has quite a nice description:
Customer relationship management (CRM) is an approach to managing a company’s interaction with current and future customers. It often involves using technology to organize, automate, and synchronize sales, marketing, customer service, and technical support.
So that's the concept, in terms of the implementation there are a number of solutions and products which have varying architectures and are presented in different ways to both the company and customer.
For example;
Microsoft CRM, has a web page but typically this is only accessible
by business users. The customers interact with the company, and the
company interacts with Microsoft CRM.
However the lines can get a little blurred, for example its not unusual for companies to build self-service portals which integrate into Microsoft CRM. In this way customers are directly interacting with Microsoft CRM.
In terms of your points:
A GUI for employees managing a large scale of data, like facebook-users or whatever. Is that a form of CRM
I would say yes. However it could also cross into sentiment analysis, and data mining.
is CRM only business-facing?
As described above, CRM is a concept. Its implementation is often business facing only, but not always.

How Do E-Commerce Websites Calculate Postage/Shipping Costs?

I'm just wondering if anyone can provide me with some information into how e-commerce websites automatically calculate the postage and shipping costs for items ordered on-line?
Do these websites use plug-ins/web services to dynamically request this information from the postage/shipping provider? Or do developers manually retrieve the postage costs from the associated shipping provider and then develop their own approximate postage/shipping cost calculation algorithm (in agreement with the e-commerce business of course)? Or are there any alternative approaches used?
Any help is much appreciated. Thanks.
EDIT: I have done some basic research on the topic. I've seen some plug-ins for WordPress but each plug-in was limited to specific postage/shipping companies only.
Do these websites use plug-ins/web services to dynamically request
this information from the postage/shipping provider?
Yes, this is certainly an option. In my experience, the APIs provided by UPS and FedEx are decent and work for the UK market.
Or do developers manually retrieve the postage costs from the
associated shipping provider and then develop their own approximate
postage/shipping cost calculation algorithm?
I would not recommend this - a maintenance headache for one reason - and have never seen it done.
Or are there any alternative approaches used?
Sometimes, fixed shipping-costs can be used - for example, when delivery is to a single country or products weights are relatively static. No API call is needed in these scenarios.
Based on my research, I've found that there doesn't seem to be a single standardised way of calculating shipping/postage costs on e-commerce websites. Some companies provide plugins for WordPress, etcetera, to assist in this process, while others companies provide API's.
Primarily, I'm interested in using a UK based shipping/postage provider.
The Royal Mail is the largest postal provider in the UK and it provides an API for a number of tasks; however no official API appears to be available for cost calculation. I did however manage to find an unofficial Royal Mail cost calculation API. It can be found at the following link.

Building a site like skyscanner, kayak, google flights

I use Skyscanner a lot myself, and one thing I don't like is the fact that I get redirected when I want to book. I want to know what the obstacles are in having a solution where you can book your flights without being redirected and without necessarily being a reseller/travel agent.
The objective is to make comparison shopping seamless.
I understand low-budget carriers prefer booking only on their site, but perhaps their strategy can be integrated within the comparison site.
I also understand that carriers would want customer analytics, but this can be made fully available to them.
What are the reasons for example KLM, Airfrance etc might NOT want to make comparison shopping seamless?
I have been a main developer for one of such website which uses such APIs. I would list many reasons but also it is a good practice not to do so.
Just some reasons off the top of my head.
1) It is not the purpose of such websites. They just join an affiliate program to redirect users and get some small fees for purchases. They would keep their system as simple as possible.
2) Airline and other provider like hotels have their own policy on fees, refund, purchase, loyalty points etc. As a third party, you can not implement such a thing for each provider. If you dont implement, then you would use API, right? They wouldn't expose such inner workings of their system to third parties, payment involves PCI compliance, customer confidentiality etc.
3) Such services involve certain confidentiality and privacy. Somebody's passport, staying at a particular hotel or flying on a particular plane is sensitive information and should not be available to third parties.
Just imagine how many third parties their API are available. No trusted company would allow this to happen.
4) Even if they allow, no third party can really ensure security of such sensitive information. If a breach of security happens, thousands of airline data etc. would be affected.
5) Each of airline and hotels might be subject to different jurisdictions in terms of data protection etc. It is technically impossible to combine them.
many many other reasons..... There are also many issues in handling payment, accounting etc.

How can I download information from bank accounts?

There are a number of free finance tracking sites out there like mint.com, wesabe.com etc.. .
I've tried all of them and all seem to miss the mark in one way or another. I'm interested in creating my own website, or possibly just a stand alone windows program for tracking my finances in ASP.NET or C#.NET.
I'm assuming the answer is no, but is there any way that a personal developer can download transactions from financial websites like these? I know once you login to most financial sites you can download a CSV or Quicken file. Yet I really like how I can log-in to my Mint.com account and update all my accounts with one click.
Popular applications (like Quicken) and most major US banks support Open Financial Exchange (OFX). If a bank can connect to Quicken, it probably supports OFX (though not guaranteed).
I doubt very many banks have public APIs for this. More likely than not, you will need to send HTTPS requests to the various banking websites, and you will probably have to have custom code for each bank that you wish to support, tailored to the structure of their websites and their form elements.