Skip to content

Instantly share code, notes, and snippets.

@chanakaudaya
Last active May 4, 2018 11:11
Show Gist options
  • Save chanakaudaya/1ae496c24937df2e26d92863b750b3b0 to your computer and use it in GitHub Desktop.
Save chanakaudaya/1ae496c24937df2e26d92863b750b3b0 to your computer and use it in GitHub Desktop.
<api xmlns="http://ws.apache.org/ns/synapse" name="AsterixAPI" context="/voice">
<resource methods="POST GET" uri-template="/details*">
<inSequence>
<log level="full">
<property name="EMAIL" expression="$url:email"/>
<property name="PHONE" expression="$url:phone"/>
</log>
<respond/>
</inSequence>
</resource>
<resource methods="POST GET" uri-template="/phone*">
<inSequence>
<log level="full">
<property name="PHONE" expression="$url:phone"/>
</log>
<respond/>
</inSequence>
</resource>
</api>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment