curl
curl --location --request GET 'http://oc1-lts0:9090/v1/dbconfig' \
--header 'Accept: application/json' \
--data-raw '{"filter":"string"}'import requests
url = "http://oc1-lts0:9090/v1/dbconfig"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://oc1-lts0:9090/v1/dbconfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "9090",
CURLOPT_URL => "http://oc1-lts0:9090/v1/dbconfig",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://oc1-lts0:9090/v1/dbconfig"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://oc1-lts0:9090/v1/dbconfig")
.asString();require 'uri'
require 'net/http'
url = URI("http://oc1-lts0:9090/v1/dbconfig")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"system_name": "abc7d45f-1e9c-4210-811d-ffg6dbd82297",
"node_name": "sql0",
"node_uuid": "578c11a2-1996-523f-a371-c393b4e5ff2e",
"hostname": "username-dev0",
"roles": [
"administration",
"health",
"vm",
"cmdComp"
],
"failed_roles": [],
"endpoints": [
{
"name": "adminopenendpoint",
"type": "FULL",
"address": "localhost",
"port": 18000
},
{
"name": "restendpoint",
"type": "FULL",
"address": "localhost",
"port": 8000
},
{
"name": "adminsecureendpoint",
"type": "FULL",
"address": "localhost",
"port": 18500
},
{
"name": "dataendpoint",
"type": "FULL",
"address": "localhost",
"port": 16500
},
{
"name": "sqlexternal",
"type": "FULL",
"address": "localhost",
"port": 3070
}
],
"totalram": 450948103168,
"processors": 120,
"hugepages": [
{
"size": 1257152,
"total": 0,
"free": 0,
"reserved": 0
},
{
"size": 1060041824,
"total": 0,
"free": 0,
"reserved": 0
}
],
"storage_devices": [
{
"id": "4425fad3-fcf9-5cfd-f3b3-b47a8457a300",
"address": "/address/4425fad3-fcf9-5cfd-f3b3-b47a8457a300.dat",
"type": "SATA",
"use": "PAYLOAD",
"pci_address": "",
"mount_point": "",
"device_path": ""
},
{
"id": "9ae82aa7-ab73-5g86-bb34-13b27945c701",
"address": "/address/9ae82aa7-ab73-5g86-bb34-13b27945c701.dat",
"type": "SATA",
"use": "PAYLOAD",
"pci_address": "",
"mount_point": "",
"device_path": ""
}
],
"connections": [
{
"address": "111.1.1.1",
"remote_port": 45598,
"state": "connected",
"locally_initiated": false
}
]
}System Information REST Endpoints
Get Configuration of Whole System
Retrieve the configuration of the system as a whole in JSON format.
GET
/
v1
/
dbconfig
curl
curl --location --request GET 'http://oc1-lts0:9090/v1/dbconfig' \
--header 'Accept: application/json' \
--data-raw '{"filter":"string"}'import requests
url = "http://oc1-lts0:9090/v1/dbconfig"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://oc1-lts0:9090/v1/dbconfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "9090",
CURLOPT_URL => "http://oc1-lts0:9090/v1/dbconfig",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://oc1-lts0:9090/v1/dbconfig"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://oc1-lts0:9090/v1/dbconfig")
.asString();require 'uri'
require 'net/http'
url = URI("http://oc1-lts0:9090/v1/dbconfig")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"system_name": "abc7d45f-1e9c-4210-811d-ffg6dbd82297",
"node_name": "sql0",
"node_uuid": "578c11a2-1996-523f-a371-c393b4e5ff2e",
"hostname": "username-dev0",
"roles": [
"administration",
"health",
"vm",
"cmdComp"
],
"failed_roles": [],
"endpoints": [
{
"name": "adminopenendpoint",
"type": "FULL",
"address": "localhost",
"port": 18000
},
{
"name": "restendpoint",
"type": "FULL",
"address": "localhost",
"port": 8000
},
{
"name": "adminsecureendpoint",
"type": "FULL",
"address": "localhost",
"port": 18500
},
{
"name": "dataendpoint",
"type": "FULL",
"address": "localhost",
"port": 16500
},
{
"name": "sqlexternal",
"type": "FULL",
"address": "localhost",
"port": 3070
}
],
"totalram": 450948103168,
"processors": 120,
"hugepages": [
{
"size": 1257152,
"total": 0,
"free": 0,
"reserved": 0
},
{
"size": 1060041824,
"total": 0,
"free": 0,
"reserved": 0
}
],
"storage_devices": [
{
"id": "4425fad3-fcf9-5cfd-f3b3-b47a8457a300",
"address": "/address/4425fad3-fcf9-5cfd-f3b3-b47a8457a300.dat",
"type": "SATA",
"use": "PAYLOAD",
"pci_address": "",
"mount_point": "",
"device_path": ""
},
{
"id": "9ae82aa7-ab73-5g86-bb34-13b27945c701",
"address": "/address/9ae82aa7-ab73-5g86-bb34-13b27945c701.dat",
"type": "SATA",
"use": "PAYLOAD",
"pci_address": "",
"mount_point": "",
"device_path": ""
}
],
"connections": [
{
"address": "111.1.1.1",
"remote_port": 45598,
"state": "connected",
"locally_initiated": false
}
]
}Response
200 - application/json
Response
Last modified on July 8, 2026
Was this page helpful?
⌘I

