Get recurring charges and fees from Yodlee API - yodlee

How can i get reocurring charges and fees from Yodlee API?
Can i know which API to get the details and field name to fetch the above details from Yodlee.
And also for available credits.
Thanks in advance.

How can i get reocurring charges and fees from Yodlee API?
There is no specific API to return these data points. You will have to look at the transactions and identify these.
And also for available credits.
This value will be present in the account level or statement level information retrieved from this Data service for a card account.

Related

What is the distinction between a payment and transaction in the Xero API?

What is the distinction between a payment and transaction in the Xero API? Does a payment create a transaction? Or are transactions only created when they are manually added? Are all organic transactions coming in as payments, rather than transactions?
A Journal entry is created for every type of transaction in Xero. So for the most comprehensive endpoint of the API I'd start there. However the greater level of detail will exist in the supplementary endpoints like invoices, bills, spent money, receive money.
There are other threads on here talking about the difference between "Bank Transactions" and the other API endpoints, as this actually excludes transactions that show in Xero but are not accessible through this specific endpoint.

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.

retrieve interest rates for credit cards using Yodlee

I am using Yodlee to get the transactional history and summary of accounts for my clients to do some predictive maths on their debt levels.
Is it possible to get the interest rate for a credit card account? Looking in the data model here there are references to APR and interest paid to date.
However using Testdrive These fields are not being returned using: getItemSummaryForItem1 or getContentServiceInfo1.
The banks I am using are ANZ (NZ) and ASB (NZ) I would like to know if these sites do not support credit card interest rates, if they do please let me know what api calls I need to make to retrieve them.
As a data field interest rate(APR) is supported, but it also depends upon the bank whether they provides it or not. If you are existing Yodlee customer, you can send a request to Yodlee Support team to get your doubts clarified. BTW, the API should be used- getItemSummariesForSite or getItemSummaryForItem1( if you are looking for further details, pass correct Data Extents, while making request).

Invoice API: How to get payment fee?

I am currently using the PayPal Invoice API to create, send, and get status of PayPal invoices.
I am getting Sent/Paid/Error status using the GetInvoiceDetails API.
See https://developer.paypal.com/docs/classic/api/invoicing/GetInvoiceDetails_API_Operation/
I am attempting to get the PayPal fee charged from a Paid invoice, but I cannot find it anywhere in the documentation.
How can I get the PayPal fee from a paid invoice using the Invoice API?
Regarding your query, Once you get the PaypalPaymentid in GetInvoiceDetails API call then you can make a further API call ( GetTransactionDetails) with that transaction id . This will give you the fee details charged for that invoice. I have tried at my end and it worked for me and should work for you as well.

Current PayPal Fees in web API?

Does anyone know if there is a publicly available PayPal resource that would allow me to calculate transaction fees in my Magento code?
For example, if someone buys something for $1.00, I'd like to know if $0.15 of that is a PayPal fee.
If there were a resource, like paypal.com/currentfees.xml or something that I could readout in my PHP code, I could that. Does it exist? I know there are different fees for different payment methods (e.g., AMEX) and fees could change at any time -> So it'd be good to have a dynamic way to calculate how much of Magento's order totals are really PayPal fees.
EDIT: To clarify, I'm not interested in charging customers more, just in knowing how much of my price is going to fees. For bookkeeping.
Thanks!
PayPal fees are not the same across accounts or even by transaction; there are different fees for cross-border transactions, PayPal Here transactions, large-merchant discounts, et cetera.
Have a look at https://www.paypal.com/webapps/mpp/paypal-fees for more detail.
So no, unfortunately you can't pull a resource to find the current fee.
However, PayPal does return the fees paid for each transaction in the API response.
For example, if you're integrated with PayPal Express Checkout, the DoExpressCheckoutPayment API (doc) is used to finalize a transaction. This API call returns a 'PAYMENTINFO_0_FEEAMT' parameter which contains the total fee amount paid for the transaction.
Should you wish to retrieve this information after the transaction has been completed; PayPal also offers the GetTransactionDetails API call (doc). This API call also returns 'FEEAMT' as a parameter.
Simply submit the TRANSACTIONID and read out the FEEAMT.
Note: Fees are only calculated on completed transactions. You won't get a FEEAMT back for any order or authorization-ID's (e.g. those starting with O-xxxxxxxx).