Back to Collection Items
<?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("Chilkat.Http");
$http->SetRequestHeader('Authorization','Basic dGVzdGluZzp0ZXN0aW5nMTIz');
$http->SetRequestHeader('Content-Type','application/json');
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder')
$sbResponseBody = new COM("Chilkat.StringBuilder");
$success = $http->QuickGetSb('https://domain.com/inquireByOrderid/{{orderid}}/{{merchid}}',$sbResponseBody);
if ($success == 0) {
print $http->LastErrorText . "\n";
exit;
}
print 'Response status code = ' . $http->LastStatus . "\n";
print $sbResponseBody->getAsString() . "\n";
?>
Curl Command
curl -X GET
-H "Authorization: Basic dGVzdGluZzp0ZXN0aW5nMTIz"
-H "Content-Type: application/json"
https://domain.com/inquireByOrderid/{{orderid}}/{{merchid}}
Postman Collection Item JSON
{
"name": "Inquire by Order ID (Order ID)",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Basic dGVzdGluZzp0ZXN0aW5nMTIz"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/inquireByOrderid/{{orderid}}/{{merchid}}",
"host": [
"{{url}}"
],
"path": [
"inquireByOrderid",
"{{orderid}}",
"{{merchid}}"
]
},
"description": "[Inquire By Order ID Documentation](https://developer.cardconnect.com/cardconnect-api#inquire-by-order-id)\n\n**Note:** Order ID should be unique and supplied by integrator/merchant."
},
"response": [
]
}