I receive my token just fine, what are the next steps to set up the form fields for the post to
https://apitest.authorize.net/xml/v1/request.api
Do I call certain API's, a little confused by the docs on this REST interface?
When I call :
$lineItem1 = new AnetAPI\LineItemType();
$lineItem1->setItemId($item_id);
...
$an_tranobj->addToLineItems($lineItem1);
Is this really generating the XML to be sent.
Do I need to use the API to correctly generate the XML for AN to accept it?
I have had a working version som SIM for over 8 years and the conversion is causing lots of problems, I use REST interfaces on other interfaces and they usually create a code example of a start to finish, I have looked at the ones on GitHub, but they all seem to assume facts not in evidence!
I am hoping one of you experts can lend me a hand on this.
Jim