Chilkat Online Tools

phpExt / PrestaShop Webservice Product Resource / Get product synopsis schema

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

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

$http = new CkHttp();

$http->put_BasicAuth(true);
$http->put_Login('{{webservice_key}}');
$http->put_Password('password');

$queryParams = new 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() . "\n";
    exit;
}

print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";


?>

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