...
Log in to the management console (
https://localhost:9443/carbon
) usingadmin/admin
credentials.Select Source View sub menu under the Service Bus menu.
Source view contains the configuration of the API Gateway. You find sequences, filters, properties, APIs etc. defined there. Search for the name of the API you want, and edit its content wrapped by the
<api></api>
elements.Note icon false You should not remove the default filter mediator and handler configurations in your API. They are needed for routing requests based on the throttling/security policies. If you want to add a custom mediator in the
insequence
path of a request, add that inside the filter mediator configuration as shown in the following example.Code Block language html/xml <filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION"> <then> <class name="org.wso2.carbon.custommediator.CustomDataMediator"/> ........................ </then> </filter>
Click Update to save your changes.
- Alternatively, you can also select the APIs sub menu under the Service Bus menu. This allows you to isolate and edit a specific API rather than viewing the entire source code.
- The Deployed APIs page opens. From there, you can select an API and click the Edit link associated with it.
- The Edit API page opens. You can switch to its source view to edit its configuration code.
- After editing the file, save and restart
Restart the server.