Chilkat Online Tools

TCL / PrestaShop Webservice Product Resource A-Z / 5 - Get stock available

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 queryParams [new_CkJsonObject]

CkJsonObject_UpdateInt $queryParams "filter[id_product]" 1
CkJsonObject_UpdateString $queryParams "display" "full"
CkJsonObject_UpdateString $queryParams "output_format" "JSON"

# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://localhost:8080/api/stock_availables" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $queryParams
    exit
}

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


delete_CkHttp $http
delete_CkJsonObject $queryParams

Curl Command

curl -G -d "filter[id_product]=1"
	-d "display=full"
	-d "output_format=JSON"
	-u '{{webservice_key}}:password'
https://localhost:8080/api/stock_availables

Postman Collection Item JSON

{
  "name": "5 - Get stock available",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{webservice_url}}/api/stock_availables?filter[id_product]={{product_id}}&display=full&output_format=JSON",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "stock_availables"
      ],
      "query": [
        {
          "key": "filter[id_product]",
          "value": "{{product_id}}"
        },
        {
          "key": "display",
          "value": "full"
        },
        {
          "key": "output_format",
          "value": "JSON"
        }
      ]
    }
  },
  "response": [
  ]
}