Back to Collection Items
require 'chilkat'
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
http.put_BasicAuth(true)
http.put_Login("{{webservice_key}}")
http.put_Password("password")
queryParams = Chilkat::CkJsonObject.new()
queryParams.UpdateInt("filter[id_product]",1)
queryParams.UpdateString("display","full")
queryParams.UpdateString("output_format","JSON")
# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://localhost:8080/api/stock_availables",queryParams)
if (http.get_LastMethodSuccess() == false)
print http.lastErrorText() + "\n";
exit
end
print resp.get_StatusCode().to_s() + "\n";
print resp.bodyStr() + "\n";
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": [
]
}