Last active
August 29, 2015 14:07
-
-
Save Zettersten/e0bcf765fbe9a80cf584 to your computer and use it in GitHub Desktop.
'ThePlatform' - Sign In 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
/* | |
* Http Post | |
* Endpoint: https://www.etsemoney.com/hp/v3/adapaters | |
* Method: Sign In | |
*/ | |
/* | |
* Request Body | |
*/ | |
{ | |
"signIn" : { | |
"signInRequest" : { | |
"username" : "... Enter Client ID ...", | |
"password" : "... Enter Password ..." | |
} | |
} | |
} | |
/* | |
* Response Body | |
*/ | |
{ | |
"signInResponse":{ | |
"token":"dfa55067-42cc-4fa0-b196-f87dd737e6fc", | |
"ttl":5100 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment