I'm making a call to the SOAP API Magento from V2 and gives me an error "Invalid Path API." The call gives me error are all called "Delete" Magento such as: catalogCategoryDelete.
The call I am making is this:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:Magento">
<soapenv:Header/>
<soapenv:Body urn:catalogCategoryDelete soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
sessionId xsi:type="xsd:string" 7730dbb3004f87091647fe65e1ceb826 /sessionId
categoryId xsi:type="xsd:int"> 8 </categoryId>
</urn:catalogCategoryDelete>
</soapenv:Body>
</soapenv:Envelope>
Magento version is 1.9.2 and PHP 5
My question is why I get the error "Invalid path API"?
Thanks for the help.