Chilkat Online Tools

TCL / PrestaShop Webservice Product Resource A-Z / 6 - Upload image

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "{{webservice_key}}"
CkHttp_put_Password $http "password"

set req [new_CkHttpRequest]

CkHttpRequest_put_HttpVerb $req "POST"
CkHttpRequest_put_Path $req "/api/images/products/1"
CkHttpRequest_put_ContentType $req "multipart/form-data"
set success [CkHttpRequest_AddFileForUpload2 $req "image" " path to file" "application/octet-stream"]

CkHttpRequest_AddHeader $req "Expect" "100-continue"

# resp is a CkHttpResponse
set resp [CkHttp_SynchronousRequest $http "localhost" 8080 1 $req]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkHttpRequest $req
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkHttpRequest $req

Curl Command

curl -X POST
	-u '{{webservice_key}}:password'
	-H "Content-Type: application/json"
	--form 'image=@"/path/to/file"'
https://localhost:8080/api/images/products/1

Postman Collection Item JSON

{
  "name": "6 - Upload image",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          "",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "image",
          "type": "file",
          "src": [
          ]
        }
      ]
    },
    "url": {
      "raw": "{{webservice_url}}/api/images/products/{{product_id}}",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "images",
        "products",
        "{{product_id}}"
      ]
    }
  },
  "response": [
  ]
}