Chilkat Online Tools

delphiDll / CardPointe API Integration / Credential Test (Authorization)

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

queryParams := CkJsonObject_Create();

CkHttp_SetRequestHeader(http,'Authorization','{{Authorization}}');
CkHttp_SetRequestHeader(http,'Content-Type','application/json');

resp := CkHttp_QuickRequestParams(http,'GET','https://domain.com/',queryParams);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);

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": [
  ]
}