Update Insight Buffer Group
curl --request PATCH \
--url https://api.example.com/admin/v1/buffers/insights/group \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
123
],
"groupName": "<string>"
}
'import requests
url = "https://api.example.com/admin/v1/buffers/insights/group"
payload = {
"ids": [123],
"groupName": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ids: [123], groupName: '<string>'})
};
fetch('https://api.example.com/admin/v1/buffers/insights/group', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/buffers/insights/group"
payload := strings.NewReader("{\n \"ids\": [\n 123\n ],\n \"groupName\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"updatedCount": 123,
"affectedMemoryIds": [
"<string>"
]
}
}Buffers
Update Insight Buffer Group
PATCH
/
admin
/
v1
/
buffers
/
insights
/
group
Update Insight Buffer Group
curl --request PATCH \
--url https://api.example.com/admin/v1/buffers/insights/group \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
123
],
"groupName": "<string>"
}
'import requests
url = "https://api.example.com/admin/v1/buffers/insights/group"
payload = {
"ids": [123],
"groupName": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ids: [123], groupName: '<string>'})
};
fetch('https://api.example.com/admin/v1/buffers/insights/group', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/admin/v1/buffers/insights/group"
payload := strings.NewReader("{\n \"ids\": [\n 123\n ],\n \"groupName\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"updatedCount": 123,
"affectedMemoryIds": [
"<string>"
]
}
}
