Chilkat Online Tools

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

Back to Collection Items

import sys
import chilkat2

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

http = chilkat2.Http()

http.BasicAuth = True
http.Login = "{{webservice_key}}"
http.Password = "password"

queryParams = chilkat2.JsonObject()
queryParams.UpdateInt("filter[id_product]",1)
queryParams.UpdateString("display","full")
queryParams.UpdateString("output_format","JSON")

# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://localhost:8080/api/stock_availables",queryParams)
if (http.LastMethodSuccess == False):
    print(http.LastErrorText)
    sys.exit()

print(str(resp.StatusCode))
print(resp.BodyStr)

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": [
  ]
}