Chilkat Online Tools

Swift / Shopify / Get a count of transactions for an order

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/4554953422/transactions/count.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/4554953422/transactions/count.json

Postman Collection Item JSON

{
  "name": "Get a count of transactions for an order",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/orders/4554953422/transactions/count.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "orders",
        "4554953422",
        "transactions",
        "count.json"
      ]
    },
    "description": "Get a count of transactions for an order."
  },
  "response": [
  ]
}