Perl / Shopify / get a single province
Back to Collection Items
use chilkat();
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = chilkat::CkHttp->new();
$http->SetRequestHeader("Content","<>");
$sbResponseBody = chilkat::CkStringBuilder->new();
$success = $http->QuickGetSb('httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/countries/261414723/provinces/4003640003.json',$sbResponseBody);
if ($success == 0) {
print $http->lastErrorText() . "\r\n";
exit;
}
print "Response status code = " . $http->get_LastStatus() . "\r\n";
print $sbResponseBody->getAsString() . "\r\n";
Curl Command
curl -X GET
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/countries/261414723/provinces/4003640003.json
Postman Collection Item JSON
{
"name": "get a single province",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/countries/261414723/provinces/4003640003.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"countries",
"261414723",
"provinces",
"4003640003.json"
]
},
"description": "Get a single province."
},
"response": [
]
}