Swift3 / Shopify / Update a carrier service
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/carrier_services/13841038.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/carrier_services/13841038.json
Postman Collection Item JSON
{
"name": "Update a carrier service",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/carrier_services/13841038.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"carrier_services",
"13841038.json"
]
},
"description": "Update a carrier service."
},
"response": [
]
}