Get Dashboard
curl --request GET \
--url https://api.example.com/admin/v1/dashboardimport requests
url = "https://api.example.com/admin/v1/dashboard"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/dashboard', 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/dashboard"
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": {
"totals": {
"rawData": 123,
"items": 123,
"insights": 123,
"memoryThreads": 123,
"graphEntities": 123,
"itemLinks": 123
},
"backlog": {
"conversationPending": 123,
"insightUnbuilt": 123,
"insightUngrouped": 123,
"threadOutboxPending": 123,
"threadOutboxFailed": 123,
"graphBatchRepairRequired": 123
},
"activity": {
"days": 123,
"rawDataCreated": [
{
"date": "<string>",
"count": 123
}
],
"itemsCreated": [
{
"date": "<string>",
"count": 123
}
],
"insightsCreated": [
{
"date": "<string>",
"count": 123
}
]
},
"breakdown": {
"sourceClients": [
{
"name": "<string>",
"count": 123
}
],
"rawDataTypes": [
{
"name": "<string>",
"count": 123
}
],
"itemTypes": [
{
"name": "<string>",
"count": 123
}
],
"insightTypes": [
{
"name": "<string>",
"count": 123
}
],
"graphLinkTypes": [
{
"name": "<string>",
"count": 123
}
]
},
"healthSignals": {
"graphEnabled": true,
"retrievalGraphAssistEnabled": true,
"threadProjectionStates": [
{
"state": "<string>",
"count": 123
}
]
}
}
}Dashboard
Get Dashboard
GET
/
admin
/
v1
/
dashboard
Get Dashboard
curl --request GET \
--url https://api.example.com/admin/v1/dashboardimport requests
url = "https://api.example.com/admin/v1/dashboard"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/dashboard', 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/dashboard"
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": {
"totals": {
"rawData": 123,
"items": 123,
"insights": 123,
"memoryThreads": 123,
"graphEntities": 123,
"itemLinks": 123
},
"backlog": {
"conversationPending": 123,
"insightUnbuilt": 123,
"insightUngrouped": 123,
"threadOutboxPending": 123,
"threadOutboxFailed": 123,
"graphBatchRepairRequired": 123
},
"activity": {
"days": 123,
"rawDataCreated": [
{
"date": "<string>",
"count": 123
}
],
"itemsCreated": [
{
"date": "<string>",
"count": 123
}
],
"insightsCreated": [
{
"date": "<string>",
"count": 123
}
]
},
"breakdown": {
"sourceClients": [
{
"name": "<string>",
"count": 123
}
],
"rawDataTypes": [
{
"name": "<string>",
"count": 123
}
],
"itemTypes": [
{
"name": "<string>",
"count": 123
}
],
"insightTypes": [
{
"name": "<string>",
"count": 123
}
],
"graphLinkTypes": [
{
"name": "<string>",
"count": 123
}
]
},
"healthSignals": {
"graphEnabled": true,
"retrievalGraphAssistEnabled": true,
"threadProjectionStates": [
{
"state": "<string>",
"count": 123
}
]
}
}
}
