Chilkat Online Tools

autoit / Shopify / Retrieving all one-time charges since a specified ID

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_9_5_0.Http")
Local $bSuccess

$oQueryParams = ObjCreate("Chilkat_9_5_0.JsonObject")
$oQueryParams.UpdateString("since_id","<>")

$oHttp.SetRequestHeader "Content","<>"

Local $oResp = $oHttp.QuickRequestParams("GET","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/application_charges.json",$oQueryParams)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

Curl Command

curl -G -d "since_id=%3C%3E"
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/application_charges.json

Postman Collection Item JSON

{
  "name": "Retrieving all one-time charges since a specified ID",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/application_charges.json?since_id=<>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "application_charges.json"
      ],
      "query": [
        {
          "key": "since_id",
          "value": "<>"
        }
      ]
    },
    "description": "Retrieving all one-time charges since a specified id."
  },
  "response": [
  ]
}