Chilkat Online Tools

Swift3 / CardPointe API Integration / Void (Retref)

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}}",
    //   "retref": "{{retref}}"
    // }

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

    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/void", 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}}",
    "retref": "{{retref}}"
}'
https://domain.com/void

Postman Collection Item JSON

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