I have question about how to create API GET method in wso2
? and
this is what I have to do
<?xml version="1.0" encoding="UTF-8"?>
<api context="/request" name="Request" xmlns="http://ws.apache.org/ns/synapse">
<resource methods="GET">
<inSequence/>
<outSequence/>
<faultSequence/>
</resource>
</api>
My question is how to create and read the parameter from API GET METHODS using wso2
?
For example like
If I need to http://localhost:8280/request?vtid=1278$token=1234
how to create the api? and how to read value from parameter vtid and token ? using wso2
?