TCL / Shopify / Retrieving all one-time charges since a specified ID
Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
set queryParams [new_CkJsonObject]
CkJsonObject_UpdateString $queryParams "since_id" "<>"
CkHttp_SetRequestHeader $http "Content" "<>"
# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/application_charges.json" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $queryParams
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $queryParams
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": [
]
}