Chilkat Online Tools

Unicode C++ / PrestaShop Webservice Product Resource / Get all products

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_BasicAuth(true);    http.put_Login(L"{{webservice_key}}");    http.put_Password(L"password");    success = http.QuickGetSb(L"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": [
  ]
}