4
Is there any way to return information from a transaction via id transaction in Paypal?
Example (API Pagseguro): https://ws.pagseguro.uol.com.br/v2/transactions/[email protected]&token=XXXXXXXXXXXXXXXXX
The most I could find was: paypal.com/cgi-bin/webscr? cmd=_view-a-trans&id=7DJ47958EX567045P
This is exactly what I want, however, I need in XML or a way to get the information with PHP.
If it is not possible to display the information in XML, there is some way to get the information with PHP?
In the API Oficial you find the methods (in
PHP
inclusive) to make inquiries about the transactions. However the return isJSON
as it says hereRequest and response payloads are formatted as JSON
.– iTSangar