Swift3 / Shopify / Get a single script tag
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
http.setRequestHeader("Content", value: "<>")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb("httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/script_tags/373484.json", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
print("Response status code = \(http.lastStatus.intValue)")
print("\(sbResponseBody.getAsString()!)")
}
Curl Command
curl -X GET
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/script_tags/373484.json
Postman Collection Item JSON
{
"name": "Get a single script tag",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/script_tags/373484.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"script_tags",
"373484.json"
]
},
"description": "Get a single script tag."
},
"response": [
]
}