Last active
April 29, 2018 09:07
-
-
Save d3ep4k/4e3090db4a054537939c1e3c364d3306 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Request method="GET"> | |
<XRequest url="https://api.url.com/fetch" persist="true" method="POST" classname="com.mycompany.handler.APIResponseHandler"> | |
<Param name="email" value="[email protected]"/> | |
<Header name="Authorization" value="Bearer 7vaBhK323fau0H32fabbgOhcsiGAIgv"/> | |
<Param name="foo">Some really long value that I want to send </Param> | |
<Header name="Content-Type">application/json</Header> | |
</XRequest> | |
<Query> | |
select * from supplier where user_token = $authCode | |
</Query> | |
<Request> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Request method="GET"> | |
<XRequest url="https://api.url.com/fetch" method="POST" persist="true"> | |
<Header name="Authorization" value="Bearer 7vaBhK323fau0H32fabbgOhcsiGAIgv"/> | |
<Header name="Content-Type">application/json<Header/> | |
<Body> | |
{ | |
"email": $userEmail, | |
"address": "221 St. Bernard Street, London, UK" | |
} | |
</Body> | |
</XRequest> | |
<Request> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment