Chilkat Online Tools

Ruby / Shopify / Get all gift cards that matches the query

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()

queryParams = Chilkat::CkJsonObject.new()
queryParams.UpdateString("query","<post>")

http.SetRequestHeader("Content","<>")

# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/search.json",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 "query=%3Cpost%3E"
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/search.json

Postman Collection Item JSON

{
  "name": "Get all gift cards that matches the query",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/gift_cards/search.json?query=<post>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "gift_cards",
        "search.json"
      ],
      "query": [
        {
          "key": "query",
          "value": "<post>"
        }
      ]
    },
    "description": "Get all gift cards that matches the query."
  },
  "response": [
  ]
}