Sample code for 30+ languages & platforms
PowerBuilder

Amazon Pay - Get Refund

See more Amazon Pay Examples

Get refund details.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_PrivKey
string ls_PublicKeyId
integer li_RespStatusCode
oleobject loo_SbResponseBody
oleobject loo_JResp
string ls_RefundId
string ls_ChargeId
string ls_RefundAmountAmount
string ls_RefundAmountCurrencyCode
string ls_SoftDescriptor
string ls_CreationTimestamp
string ls_StatusDetailsState
string ls_StatusDetailsReasonCode
string ls_StatusDetailsReasonDescription
string ls_StatusDetailsLastUpdatedTimestamp
string ls_ReleaseEnvironment

li_Success = 0

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

loo_Http = create oleobject
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

// Implements the following CURL command:

// curl "https://pay-api.amazon.com/:version/refunds/:refundId" \
// -X GET
// -H "authorization:Px2e5oHhQZ88vVhc0DO%2FsShHj8MDDg%3DEXAMPLESIGNATURE"
// -H "x-amz-pay-date:20201012T235046Z"

// Load your Amazon Pay private key.  
// There are many other ways to load private keys into the Chilkat private key object, such as from different formats,
// or from in-memory strings or bytes.
loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat.PrivateKey")

li_Success = loo_PrivKey.LoadPemFile("C:/someDir/myAmazonPayPrivateKey.pem")
if li_Success = 0 then
    Write-Debug loo_PrivKey.LastErrorText
    destroy loo_Http
    destroy loo_PrivKey
    return
end if

// Provide your Amazon Pay private key and Public Key ID 
// Use your public key ID here.  It must be the one associated with the private key.
ls_PublicKeyId = "SANDBOX-AHEGSJCM3L2S637RBGABLAFW"
li_Success = loo_Http.SetAuthPrivateKey(ls_PublicKeyId,loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_PrivKey
    return
end if

// Note: When the private key is provided as shown above, Chilkat will automatically add the required x-amz-pay-* headers to the HTTP request,
// and will also sign the request.  Nothing more is needed.
// Chilkat automatically generates and adds the following headers:
// 
// x-amz-pay-date
// x-amz-pay-host
// x-amz-pay-region
// Authorization

loo_Http.Accept = "application/json"

li_RespStatusCode = 0

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

li_Success = loo_Http.SetUrlVar("refundId","S01-5105180-3221187-R022311")
// To use the live system, replace "sandbox" with "live" in the URL passed to QuickGetSb.
// Also, make sure to use the correct region: pay-api.amazon.com, pay-api.amazon.eu, or pay-api.amazon.jp
li_Success = loo_Http.QuickGetSb("https://pay-api.amazon.eu/sandbox/v2/refunds/{$refundId}",loo_SbResponseBody)
if li_Success = 0 then
    // If the LastStatus is not equal to 0, then we received a response, but it was an error response.
    li_RespStatusCode = loo_Http.LastStatus
    if li_RespStatusCode <> 0 then
        Write-Debug "Response Status Code = " + string(li_RespStatusCode)
        Write-Debug "Response body:"
        Write-Debug loo_Http.LastResponseBody
    else
        Write-Debug loo_Http.LastErrorText
    end if

    destroy loo_Http
    destroy loo_PrivKey
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
// We expect a 200 status code for success.
// Note: Some Amazon Pay API calls return 200 for success, others return 201.
if li_RespStatusCode <> 200 then
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_PrivKey
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

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

// {
//      "refundId": "S01-5105180-3221187-R022311",
//      "chargeId": "S01-5105180-3221187-C056351",
//      "refundAmount": {
//          "amount": "14.00",
//          "currencyCode": "USD"
//      },
//      "softDescriptor": "Descriptor",
//      "creationTimestamp": "20190714T155300Z",
//      "statusDetails": {
//          "state": "Refunded",
//          "reasonCode": null,
//          "reasonDescription": null,
//          "lastUpdatedTimestamp": "20190714T155300Z"
//      },
//      "releaseEnvironment": "Sandbox"
// }

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

ls_RefundId = loo_JResp.StringOf("refundId")
ls_ChargeId = loo_JResp.StringOf("chargeId")
ls_RefundAmountAmount = loo_JResp.StringOf("refundAmount.amount")
ls_RefundAmountCurrencyCode = loo_JResp.StringOf("refundAmount.currencyCode")
ls_SoftDescriptor = loo_JResp.StringOf("softDescriptor")
ls_CreationTimestamp = loo_JResp.StringOf("creationTimestamp")
ls_StatusDetailsState = loo_JResp.StringOf("statusDetails.state")
ls_StatusDetailsReasonCode = loo_JResp.StringOf("statusDetails.reasonCode")
ls_StatusDetailsReasonDescription = loo_JResp.StringOf("statusDetails.reasonDescription")
ls_StatusDetailsLastUpdatedTimestamp = loo_JResp.StringOf("statusDetails.lastUpdatedTimestamp")
ls_ReleaseEnvironment = loo_JResp.StringOf("releaseEnvironment")


destroy loo_Http
destroy loo_PrivKey
destroy loo_SbResponseBody
destroy loo_JResp