Chilkat Online Tools

Swift / PrestaShop Webservice Product Resource A-Z / 5 - Get stock available

Back to Collection Items

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

    let http = CkoHttp()
    var success: Bool

    http.BasicAuth = true
    http.Login = "{{webservice_key}}"
    http.Password = "password"

    let queryParams = CkoJsonObject()
    queryParams.UpdateInt("filter[id_product]", value: 1)
    queryParams.UpdateString("display", value: "full")
    queryParams.UpdateString("output_format", value: "JSON")

    var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://localhost:8080/api/stock_availables", json: queryParams)
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

    print("\(resp!.StatusCode.intValue)")
    print("\(resp!.BodyStr)")
    resp = nil

}

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