Objective-C / Shopify / Mark a comment as Spam
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/comments/2941387470/spam.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/comments/2941387470/spam.json
Postman Collection Item JSON
{
"name": "Mark a comment as Spam",
"request": {
"method": "POST",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/comments/2941387470/spam.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"comments",
"2941387470",
"spam.json"
]
},
"description": "Mark a comment as spam."
},
"response": [
]
}