Sample code for 30+ languages & platforms
Lianja

Shippo Create a Refund

See more Shippo Examples

Demonstrates how to refund a shipping label.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loHttp = createobject("CkHttp")

// Implements the following CURL command:

// curl  https://api.goshippo.com/refunds/ \
//     -H "Authorization: ShippoToken <API_Token>" \
//     -d transaction="4503427478ea45a899e9b54abc4c5803"

loReq = createobject("CkHttpRequest")
loReq.HttpVerb = "POST"
loReq.Path = "/refunds/"
loReq.ContentType = "application/x-www-form-urlencoded"
loReq.AddParam("transaction","4503427478ea45a899e9b54abc4c5803")

loReq.AddHeader("Authorization","ShippoToken <API_Token>")

loResp = createobject("CkHttpResponse")
llSuccess = loHttp.HttpReq("https://api.goshippo.com/refunds/",loReq,loResp)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loReq
    release loResp
    return
endif

loSbResponseBody = createobject("CkStringBuilder")
loResp.GetBodySb(loSbResponseBody)
loJResp = createobject("CkJsonObject")
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = .F.

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + str(lnRespStatusCode)
if (lnRespStatusCode >= 400) then
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    release loHttp
    release loReq
    release loResp
    release loSbResponseBody
    release loJResp
    return
endif

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "object_created": "2014-04-21T07:12:41.044Z",
//   "object_id": "bd7b8379a2e847bcb0818125943dde5d",
//   "object_owner": "shippotle@goshippo.com",
//   "object_updated": "2014-04-21T07:12:41.045Z",
//   "status": "QUEUED",
//   "transaction": "35ed59f23a514ecfa2faeaed93a00086"
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

lcObject_created = loJResp.StringOf("object_created")
lcObject_id = loJResp.StringOf("object_id")
lcObject_owner = loJResp.StringOf("object_owner")
lcObject_updated = loJResp.StringOf("object_updated")
lcStatus = loJResp.StringOf("status")
lcTransaction = loJResp.StringOf("transaction")


release loHttp
release loReq
release loResp
release loSbResponseBody
release loJResp