Objective-C / Shopify / Close a processed order
Back to Collection Items
#import <CkoHttp.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
[http SetRequestHeader: @"Content" value: @"<>"];
CkoHttpResponse *resp = [http QuickRequest: @"POST" url: @"httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4554953422/close.json"];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -X POST
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4554953422/close.json
Postman Collection Item JSON
{
"name": "Close a processed order",
"request": {
"method": "POST",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/orders/4554953422/close.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"orders",
"4554953422",
"close.json"
]
},
"description": "Close a processed order."
},
"response": [
]
}