Chilkat Online Tools

Swift3 / CardPointe API Integration / Profile (Get)

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("Authorization", value: "{{Authorization}}")
    http.setRequestHeader("Content-Type", value: "application/json")

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb("https://domain.com/profile/{{profileid}}/{{acctid}}/{{merchid}}", 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 "Authorization: {{Authorization}}"
	-H "Content-Type: application/json"
https://domain.com/profile/{{profileid}}/{{acctid}}/{{merchid}}

Postman Collection Item JSON

{
  "name": "Profile (Get)",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "{{Authorization}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/profile/{{profileid}}/{{acctid}}/{{merchid}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "profile",
        "{{profileid}}",
        "{{acctid}}",
        "{{merchid}}"
      ]
    },
    "description": "[Profile Documentation](https://developer.cardconnect.com/cardconnect-api#profile)"
  },
  "response": [
  ]
}