OK so I want to add the Transaction ID to my email/database that I send when a transaction is processed. I am using a cart that I coded myself and I currently only check that the transaction was approves usinf an if statment in PHP if($response->'Approved') I was wondering what variable I would use to get the Transaction ID so I can add it to the email that is sent and my database.
08-19-2011 07:05 AM
The documentation is centered around XML more than the PHP AIM API, looks like. My advice would be to set up a test page and print_r($response), you can probably work out fairly quickly what format to use to get the transaction ID.
08-19-2011 08:12 PM