List Insight Buffer Groups
curl --request GET \
--url https://api.example.com/admin/v1/buffers/insights/groupsimport requests
url = "https://api.example.com/admin/v1/buffers/insights/groups"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/buffers/insights/groups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/buffers/insights/groups"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"memoryId": "<string>",
"insightTypeName": "<string>",
"groupName": "<string>",
"total": 123,
"unbuilt": 123,
"built": 123
}
]
}Buffers
List Insight Buffer Groups
GET
/
admin
/
v1
/
buffers
/
insights
/
groups
List Insight Buffer Groups
curl --request GET \
--url https://api.example.com/admin/v1/buffers/insights/groupsimport requests
url = "https://api.example.com/admin/v1/buffers/insights/groups"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/buffers/insights/groups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/buffers/insights/groups"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"memoryId": "<string>",
"insightTypeName": "<string>",
"groupName": "<string>",
"total": 123,
"unbuilt": 123,
"built": 123
}
]
}
