Get all transactions from clients account using PayPal API

Viewed 29

How can I get all transactions from client's account?

I have the client's access token & refresh token (it solved).

How can I connect to their account via API?

Can I get all transactions?

1 Answers

To use the transaction search API as a 3rd party, you need to be a PayPal partner and be given access to this.

To use it as a first party (with a client ID and secret belonging to the account), the permission needs to be enabled on the corresponding REST app configuration, and any existing access_token refreshed from cache

In general the best way to get a full list of transactions from an account is to go to its Reports and do an Activity Download in CSV format, for import.

Related