Swift3 / Shopify / Get the Representation of a specific fulfillment.
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/orders/4528049998/fulfillments/3770145678.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/orders/4528049998/fulfillments/3770145678.json
Postman Collection Item JSON
{
"name": "Get the Representation of a specific fulfillment.",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/orders/4528049998/fulfillments/3770145678.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"orders",
"4528049998",
"fulfillments",
"3770145678.json"
]
},
"description": "Get the representation of a specific fulfillment.."
},
"response": [
]
}