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
// Adds the "Authorization: Bearer {{token}}" header.
http.SetAuthToken("{{token}}")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}",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: Bearer {{token}}"
https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}
Postman Collection Item JSON
{
"name": "Get rolegroup by Id",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"organizations",
"{{organization_id}}",
"rolegroups",
"{{rolegroup_Id}}"
]
}
},
"response": [
]
}