Sample code for 30+ languages & platforms
PowerBuilder

Lightspeed - Upload an Image

See more Lightspeed Examples

Create (uploads) a new product image.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_BdImage
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
integer li_ProductImageId
integer li_ProductImageSortOrder
string ls_ProductImageCreatedAt
string ls_ProductImageUpdatedAt
string ls_ProductImageExtension
integer li_ProductImageSize
string ls_ProductImageTitle
string ls_ProductImageThumb
string ls_ProductImageSrc

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   -u API_KEY:API_SECRET \
//     -H "Content-Type: application/json" \
//     -X POST \
//     -d '{
//   "productImage": {
//     "attachment": "base64-encoded-contents",
//     "filename": "the-filename-with-extension-goes-here.jpg"
//   }
// }' \
// "https://api.webshopapp.com/en/products/product_id/images.json"

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

loo_Http.Login = "API_KEY"
loo_Http.Password = "API_SECRET"

// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "productImage": {
//     "attachment": "base64-encoded-contents",
//     "filename": "the-filename-with-extension-goes-here.jpg"
//   }
// }

loo_BdImage = create oleobject
li_rc = loo_BdImage.ConnectToNewObject("Chilkat.BinData")

li_Success = loo_BdImage.LoadFile("qa_data/jpg/starfish.jpg")
if li_Success = 0 then
    Write-Debug "Failed to load image file."
    destroy loo_Http
    destroy loo_BdImage
    return
end if

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

loo_Json.UpdateString("productImage.attachment",loo_BdImage.GetEncoded("base64"))
loo_Json.UpdateString("productImage.filename","starfish.jpg")

loo_Http.SetRequestHeader("Content-Type","application/json")

// The product ID in the URL is "112265200".
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpJson("POST","https://api.webshopapp.com/en/products/112265200/images.json",loo_Json,"application/json",loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_BdImage
    destroy loo_Json
    destroy loo_Resp
    return
end if

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

loo_Resp.GetBodySb(loo_SbResponseBody)
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_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_BdImage
    destroy loo_Json
    destroy loo_Resp
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

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

// {
//   "productImage": {
//     "id": 13362569,
//     "sortOrder": 3,
//     "createdAt": "2019-06-06T14:52:07+00:00",
//     "updatedAt": "2019-06-06T14:52:07+00:00",
//     "extension": "png",
//     "size": 8016,
//     "title": "logo",
//     "thumb": "https://cdn.shoplightspeed.com/shops/000001/files/14271562/50x50x2/logo.png",
//     "src": "https://cdn.shoplightspeed.com/shops/000001/files/14271562/logo.png"
//   }
// }

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

li_ProductImageId = loo_JResp.IntOf("productImage.id")
li_ProductImageSortOrder = loo_JResp.IntOf("productImage.sortOrder")
ls_ProductImageCreatedAt = loo_JResp.StringOf("productImage.createdAt")
ls_ProductImageUpdatedAt = loo_JResp.StringOf("productImage.updatedAt")
ls_ProductImageExtension = loo_JResp.StringOf("productImage.extension")
li_ProductImageSize = loo_JResp.IntOf("productImage.size")
ls_ProductImageTitle = loo_JResp.StringOf("productImage.title")
ls_ProductImageThumb = loo_JResp.StringOf("productImage.thumb")
ls_ProductImageSrc = loo_JResp.StringOf("productImage.src")


destroy loo_Http
destroy loo_BdImage
destroy loo_Json
destroy loo_Resp
destroy loo_SbResponseBody
destroy loo_JResp