Chilkat Online Tools

Delphi (DLL) / PrestaShop Webservice Product Resource / Get all products

Back to Collection Items

var

begin
CkHttp_putBasicAuth(http,True);CkHttp_putLogin(http,'{{webservice_key}}');CkHttp_putPassword(http,'password');success := CkHttp_QuickGetSb(http,'https://localhost:8080/api/products',sbResponseBody);


Curl Command

curl -X GET
	-u '{{webservice_key}}:password'
https://localhost:8080/api/products

Postman Collection Item JSON

{
  "name": "Get all products",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{webservice_url}}/api/products",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "products"
      ]
    }
  },
  "response": [
  ]
}