Chilkat Online Tools

Swift3 / CardPointe API Integration / Void by Order ID (Order ID)

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

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "merchid": "{{merchid}}",
    //   "orderid": "{{orderid}}"
    // }

    let json = CkoJsonObject()!
    json.update("merchid", value: "{{merchid}}")
    json.update("orderid", value: "{{orderid}}")

    http.setRequestHeader("Authorization", value: "Basic dGVzdGluZzp0ZXN0aW5nMTIz")
    http.setRequestHeader("Content-Type", value: "application/json")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)

    var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://domain.com/voidByOrderId", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X PUT
	-H "Authorization: Basic dGVzdGluZzp0ZXN0aW5nMTIz"
	-H "Content-Type: application/json"
	-d '{
    "merchid": "{{merchid}}",
    "orderid": "{{orderid}}"
}'
https://domain.com/voidByOrderId

Postman Collection Item JSON

{
  "name": "Void by Order ID (Order ID)",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Authorization",
        "value": "Basic dGVzdGluZzp0ZXN0aW5nMTIz"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"merchid\": \"{{merchid}}\",\n    \"orderid\": \"{{orderid}}\"\n}"
    },
    "url": {
      "raw": "{{url}}/voidByOrderId",
      "host": [
        "{{url}}"
      ],
      "path": [
        "voidByOrderId"
      ]
    },
    "description": "[Void by Order ID Documentation](https://developer.cardconnect.com/cardconnect-api#void-by-order-id)"
  },
  "response": [
  ]
}