Chilkat Online Tools

Python / PrestaShop Webservice Product Resource / Get product synopsis schema

Back to Collection Items

import sys
import chilkat

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

http = chilkat.CkHttp()

http.put_BasicAuth(True)
http.put_Login("{{webservice_key}}")
http.put_Password("password")

queryParams = chilkat.CkJsonObject()
queryParams.UpdateString("schema","synopsis")

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

print(str(resp.get_StatusCode()))
print(resp.bodyStr())

Curl Command

curl -G -d "schema=synopsis"
	-u '{{webservice_key}}:password'
https://localhost:8080/api/products

Postman Collection Item JSON

{
  "name": "Get product synopsis schema",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{webservice_url}}/api/products?schema=synopsis",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "products"
      ],
      "query": [
        {
          "key": "schema",
          "value": "synopsis"
        }
      ]
    }
  },
  "response": [
  ]
}