Magento 2 WSDL Link – Access and Usage Guide

apimagento2-dev-betawsdl

I see that Magento 2 still has a SOAP API.
I'm not able to find the URL to the WSDL.

I've tried this so far:

$HOME/api/soap/index/?wsdl and $HOME/api/soap/index/?wsdl=1

Best Answer

I was playing with API today. It looks URLs like these work on beta2:

$HOME/soap/?services=customerAccountManagementV1&wsdl
$HOME/soap/?services=customerGroupRepositoryV1&wsdl

Service name translation is being done in Magento\Webapi\Helper\Data::getServiceNameParts() and there are examples in docblock there. Examples are probably outdated, but they show general idea.

Related Topic