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.SetBasicAuth(true)
http.SetLogin("{{api_key}}")
http.SetPassword("{{api_secret}}")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://domain.com/v1/assets",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
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/assets
Postman Collection Item JSON
{
"name": "All Assets",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/assets",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"assets"
],
"query": [
{
"key": "status",
"value": "ACTIVE",
"description": "Will default to all",
"disabled": true
},
{
"key": "asset_class",
"value": null,
"description": "String",
"disabled": true
}
]
}
},
"response": [
]
}