Chilkat Online Tools

Unicode C++ / PrestaShop Webservice Product Resource A-Z / 5 - Get stock available

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_BasicAuth(true);    http.put_Login(L"{{webservice_key}}");    http.put_Password(L"password");    queryParams.UpdateInt(L"filter[id_product]",1);    queryParams.UpdateString(L"display",L"full");    queryParams.UpdateString(L"output_format",L"JSON");
    }

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