Chilkat Online Tools

phpAx / CardPointe API Integration / Credential Test (Authorization)

Back to Collection Items

<?php

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

$http = new COM("Chilkat_9_5_0.Http");

$queryParams = new COM("Chilkat_9_5_0.JsonObject");

$http->SetRequestHeader('Authorization','{{Authorization}}');
$http->SetRequestHeader('Content-Type','application/json');

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->QuickRequestParams('GET','https://domain.com/',$queryParams);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

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