Getting started Community Training Tutorials Documentation APIs, AI & Tools
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:api-platform-gw="http://www.mulesoft.org/schema/mule/api-platform-gw"
xmlns:http="http://www.mulesoft.org/schema/mule/http"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/api-platform-gw http://www.mulesoft.org/schema/mule/api-platform-gw/current/mule-api-platform-gw.xsd">
<api-platform-gw:api id="apiId" create="true" apiName="name" version="1.0.0" flowRef="flow_api">
<api-platform-gw:description>This is a test API</api-platform-gw:description>
<api-platform-gw:tag>tag1</api-platform-gw:tag>
<api-platform-gw:tag>tag2</api-platform-gw:tag>
</api-platform-gw:api>
<http:listener-config name="httpConfig" host="localhost" port="${port}" />
<flow name="flow_api">
<http:listener config-ref="httpConfig" path="api" />
<logger message="Executing empty" level="INFO"/>
</flow>
</mule>



