I have zero knowledge on XML since I really use JSON but I have a project that includes XML transactions so I have no choice Basically, a request will sent to my API and then I will have to respond via XML like this
<?xml version="1.0" encoding="UTF-8"?>
<authenticate version="2.0">
<vendor_member_id>Unique_ID</vendor_member_id>
<status_code>0</status_code>
<message>OK</message>
</authenticate>
Need help please, I don't know how to achieve this..
The tricky part here is the
<authenticate version="2.0">
how will I show that?