webapi.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
  10. <!-- Currency -->
  11. <route url="/V1/directory/currency" method="GET">
  12. <service class="Magento\Directory\Api\CurrencyInformationAcquirerInterface" method="getCurrencyInfo"/>
  13. <resources>
  14. <resource ref="anonymous" />
  15. </resources>
  16. </route>
  17. <!-- Country and Region -->
  18. <route url="/V1/directory/countries" method="GET">
  19. <service class="Magento\Directory\Api\CountryInformationAcquirerInterface" method="getCountriesInfo"/>
  20. <resources>
  21. <resource ref="anonymous" />
  22. </resources>
  23. </route>
  24. <route url="/V1/directory/countries/:countryId" method="GET">
  25. <service class="Magento\Directory\Api\CountryInformationAcquirerInterface" method="getCountryInfo"/>
  26. <resources>
  27. <resource ref="anonymous" />
  28. </resources>
  29. </route>
  30. </routes>