Objective-C / Shopify / Get all gift cards that matches the query
Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.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;
CkoJsonObject *queryParams = [[CkoJsonObject alloc] init];
[queryParams UpdateString: @"query" value: @"<post>"];
[http SetRequestHeader: @"Content" value: @"<>"];
CkoHttpResponse *resp = [http QuickRequestParams: @"GET" url: @"httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/search.json" json: queryParams];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -G -d "query=%3Cpost%3E"
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/gift_cards/search.json
Postman Collection Item JSON
{
"name": "Get all gift cards that matches the query",
"request": {
"method": "GET",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/gift_cards/search.json?query=<post>",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"gift_cards",
"search.json"
],
"query": [
{
"key": "query",
"value": "<post>"
}
]
},
"description": "Get all gift cards that matches the query."
},
"response": [
]
}