phpAx / Shopify / Retrieving all one-time charges since a specified ID
Back to Collection Items
<?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("Chilkat.Http");
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$queryParams = new COM("Chilkat.JsonObject");
$queryParams->UpdateString('since_id','<>');
$http->SetRequestHeader('Content','<>');
// resp is a Chilkat.HttpResponse
$resp = $http->QuickRequestParams('GET','httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/application_charges.json',$queryParams);
if ($http->LastMethodSuccess == 0) {
print $http->LastErrorText . "\n";
exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
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": [
]
}