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
let queryParams = CkoJsonObject()!
http.setRequestHeader("Authorization", value: "{{Authorization}}")
http.setRequestHeader("Content-Type", value: "application/json")
var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/", json: queryParams)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -G -d "="
-H "Authorization: {{Authorization}}"
-H "Content-Type: application/json"
https://domain.com/
Postman Collection Item JSON
{
"name": "Credential Test (Authorization)",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"type": "text",
"value": "{{Authorization}}"
},
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/?=",
"host": [
"{{url}}"
],
"path": [
""
],
"query": [
{
"key": "",
"value": ""
}
]
},
"description": "[Testing your API Credentials](https://developer.cardconnect.com/cardconnect-api#testing-your-api-credentials)\n\n**Note:** If the credentials are valid, the response returns the message \"CardConnect REST Servlet.\""
},
"response": [
]
}