autoit / Shopify / Disable a gift card
        
        Back to Collection Items
        ; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
$oHttp.SetRequestHeader "Content","<>"
$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpNoBody("POST","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/61810574/disable.json",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf
ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)
        Curl Command
        curl -X POST
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/61810574/disable.json
        Postman Collection Item JSON
        {
  "name": "Disable a gift card",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/gift_cards/61810574/disable.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "gift_cards",
        "61810574",
        "disable.json"
      ]
    },
    "description": "Disable a gift card."
  },
  "response": [
  ]
}