Get Memory Options
curl --request GET \
--url https://api.example.com/admin/v1/config/memory-optionsimport requests
url = "https://api.example.com/admin/v1/config/memory-options"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/config/memory-options', 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/config/memory-options"
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": {
"version": 123,
"config": {}
}
}Config
Get Memory Options
GET
/
admin
/
v1
/
config
/
memory-options
Get Memory Options
curl --request GET \
--url https://api.example.com/admin/v1/config/memory-optionsimport requests
url = "https://api.example.com/admin/v1/config/memory-options"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/admin/v1/config/memory-options', 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/config/memory-options"
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": {
"version": 123,
"config": {}
}
}The API Reference is under active development. Request and response schemas may change before a stable release.
Response
200 - */*
OK
Show child attributes
Show child attributes

