Skip to content

Instantly share code, notes, and snippets.

@Zettersten
Last active August 29, 2015 14:07
Show Gist options
  • Save Zettersten/4534fb85c4dbc9ca4206 to your computer and use it in GitHub Desktop.
Save Zettersten/4534fb85c4dbc9ca4206 to your computer and use it in GitHub Desktop.
'ThePlatform' - Authorize Request
/*
* Http Post
* Endpoint: https://www.etsemoney.com/hp/v3/adapaters
* Method: Authorize
*/
/*
* Request Body
*/
{
"authorize" : {
"authorizeRequest" : {
"token" : "... Enter Token Here ...",
"paymentInstrumentRef" : "... Your Payment Instrument ..."
"amount" : "5",
"transactionReferenceCode" : "cedc242e-ea22-4dd2-a769-22bd1a9c5f41"
}
}
}
/*
* Response Body
*/
{
"authorizeResponse":{
"transactionReferenceCode":"cedc242e-ea22-4dd2-a769-22bd1a9c5f41"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment