Created
October 1, 2014 18:12
-
-
Save Zettersten/f5d2572ea79534825573 to your computer and use it in GitHub Desktop.
'ThePlatform' - Refund Request
This file contains 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: Refund | |
*/ | |
/* | |
* Request Body | |
*/ | |
{ | |
"refund" : { | |
"refundRequest" : { | |
"token" : "... Enter Token ...", | |
"amount" : 29.99, | |
"transactionReferenceCode" : "d9ee2e03-35d8-4c6b-a276-60ac116e5967" | |
} | |
} | |
} | |
/* | |
* Response Body | |
*/ | |
{ | |
"refundResponse":{ | |
"transactionReferenceCode":"d9ee2e03-35d8-4c6b-a276-60ac116e5967" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment