Sample code for 30+ languages & platforms
DataFlex

Lightspeed - Upload an Image

See more Lightspeed Examples

Create (uploads) a new product image.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoHttp
    Handle hoBdImage
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    Integer iProductImageId
    Integer iProductImageSortOrder
    String sProductImageCreatedAt
    String sProductImageUpdatedAt
    String sProductImageExtension
    Integer iProductImageSize
    String sProductImageTitle
    String sProductImageThumb
    String sProductImageSrc
    String sTemp1

    Move False To iSuccess

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // 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

    Set ComLogin Of hoHttp To "API_KEY"
    Set ComPassword Of hoHttp To "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"
    //   }
    // }

    Get Create (RefClass(cComChilkatBinData)) To hoBdImage
    If (Not(IsComObjectCreated(hoBdImage))) Begin
        Send CreateComObject of hoBdImage
    End
    Get ComLoadFile Of hoBdImage "qa_data/jpg/starfish.jpg" To iSuccess
    If (iSuccess = False) Begin
        Showln "Failed to load image file."
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComGetEncoded Of hoBdImage "base64" To sTemp1
    Get ComUpdateString Of hoJson "productImage.attachment" sTemp1 To iSuccess
    Get ComUpdateString Of hoJson "productImage.filename" "starfish.jpg" To iSuccess

    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"

    // The product ID in the URL is "112265200".
    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoJson to vJson
    Get pvComObject of hoResp to vResp
    Get ComHttpJson Of hoHttp "POST" "https://api.webshopapp.com/en/products/112265200/images.json" vJson "application/json" vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess
    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

    // 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

    Get ComIntOf Of hoJResp "productImage.id" To iProductImageId
    Get ComIntOf Of hoJResp "productImage.sortOrder" To iProductImageSortOrder
    Get ComStringOf Of hoJResp "productImage.createdAt" To sProductImageCreatedAt
    Get ComStringOf Of hoJResp "productImage.updatedAt" To sProductImageUpdatedAt
    Get ComStringOf Of hoJResp "productImage.extension" To sProductImageExtension
    Get ComIntOf Of hoJResp "productImage.size" To iProductImageSize
    Get ComStringOf Of hoJResp "productImage.title" To sProductImageTitle
    Get ComStringOf Of hoJResp "productImage.thumb" To sProductImageThumb
    Get ComStringOf Of hoJResp "productImage.src" To sProductImageSrc


End_Procedure