Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Http.BasicAuth = 1
loo_Http.Login = "100100248"
loo_Http.Password = "117f3fe5a01a0e400f3e4782baf8ffa43a9d21e9217a15f50d545bc72480d081ecaecc1d6a42ac7a785b7437232bd4cf62dbee679b78a75a3892547059018f9b"
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "requestId": "merchant-generated-request-guid",
// "amount": {
// "amount": "37.00",
// "currency": "USD"
// },
// "merchantReference": "merchant-order-number"
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("requestId","merchant-generated-request-guid")
loo_Json.UpdateString("amount.amount","37.00")
loo_Json.UpdateString("amount.currency","USD")
loo_Json.UpdateString("merchantReference","merchant-order-number")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = loo_Http.PostJson3("https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/refund","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_Json
Curl Command
curl -X POST
-u '100100248:117f3fe5a01a0e400f3e4782baf8ffa43a9d21e9217a15f50d545bc72480d081ecaecc1d6a42ac7a785b7437232bd4cf62dbee679b78a75a3892547059018f9b'
-H "Content-Type: application/json"
-d '{
"requestId": "merchant-generated-request-guid",
"amount" : {
"amount" : "37.00",
"currency" : "USD"
},
"merchantReference" : "merchant-order-number"
}'
https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/refund
Postman Collection Item JSON
{
"name": "Create Refund",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"requestId\": \"merchant-generated-request-guid\",\n\t\"amount\" : {\n\t\t\"amount\" : \"37.00\",\n\t\t\"currency\" : \"USD\"\n\t\t},\n\t\"merchantReference\" : \"merchant-order-number\"\n}"
},
"url": {
"raw": "https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/refund",
"protocol": "https",
"host": [
"api",
"us-sandbox",
"afterpay",
"com"
],
"path": [
"v2",
"payments",
"{{id}}",
"refund"
]
},
"description": "This resource performs a full or partial refund.\n\nThe resource is idempotent if a unique requestId is provided."
},
"response": [
]
}