Chilkat Online Tools

Objective-C / Shopify / Get a list of all fulfillment events for a fulfillment

Back to Collection Items

#import <CkoHttp.h>
#import <CkoStringBuilder.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: @"<>"];

CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [http QuickGetSb: @"httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4528049998/fulfillments/3770145678/events.json" sbContent: sbResponseBody];
if (success == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%@%d",@"Response status code = ",[http.LastStatus intValue]);
NSLog(@"%@",[sbResponseBody GetAsString]);

Curl Command

curl -X GET
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4528049998/fulfillments/3770145678/events.json

Postman Collection Item JSON

{
  "name": "Get a list of all fulfillment events for a fulfillment",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/orders/4528049998/fulfillments/3770145678/events.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "orders",
        "4528049998",
        "fulfillments",
        "3770145678",
        "events.json"
      ]
    },
    "description": "Get a list of all fulfillment events for a fulfillment."
  },
  "response": [
  ]
}