Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
http.SetRequestHeader("Authorization","Basic dGVzdGluZzp0ZXN0aW5nMTIz")
http.SetRequestHeader("Content-Type","application/json")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://domain.com/bin/{{merchid}}/{{token}}",sbResponseBody)
if success == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
return
}
fmt.Println("Response status code = ", http.LastStatus())
fmt.Println(*sbResponseBody.GetAsString())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
Curl Command
curl -X GET
-H "Authorization: Basic dGVzdGluZzp0ZXN0aW5nMTIz"
-H "Content-Type: application/json"
https://domain.com/bin/{{merchid}}/{{token}}
Postman Collection Item JSON
{
"name": "Bin (Token)",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Basic dGVzdGluZzp0ZXN0aW5nMTIz"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/bin/{{merchid}}/{{token}}",
"host": [
"{{url}}"
],
"path": [
"bin",
"{{merchid}}",
"{{token}}"
]
},
"description": "[Bin Documentation](https://developer.cardconnect.com/cardconnect-api#bin)"
},
"response": [
]
}