> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ocient.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Configuration

> Retrieve the configuration about this node in JSON format.



## OpenAPI

````yaml /openapi/generated-api-methods.json GET /v1/sysconfig
openapi: 3.1.0
info:
  title: Generated API methods
  version: 1.0.0
  description: Generated from imported ApiMethodV2 blocks.
servers:
  - url: https://{sql_node}
    variables:
      sql_node:
        default: sql_node
  - url: http://oc1-lts0:9090
security: []
paths:
  /v1/sysconfig:
    get:
      tags:
        - System Information REST Endpoints
      summary: Get Configuration
      description: Retrieve the configuration about this node in JSON format.
      operationId: getSystemInformationRestEndpointsGetConfiguration
      parameters: []
      responses:
        '200':
          description: Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  system_name:
                    type: string
                  node_name:
                    type: string
                  node_uuid:
                    type: string
                  hostname:
                    type: string
                  roles:
                    type: array
                    items:
                      type: string
                  failed_roles:
                    type: array
                    items: {}
                  endpoints:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        address:
                          type: string
                        port:
                          type: integer
                  totalram:
                    type: integer
                  processors:
                    type: integer
                  hugepages:
                    type: array
                    items:
                      type: object
                      properties:
                        size:
                          type: integer
                        total:
                          type: integer
                        free:
                          type: integer
                        reserved:
                          type: integer
                  storage_devices:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        address:
                          type: string
                        type:
                          type: string
                        use:
                          type: string
                        pci_address:
                          type: string
                        mount_point:
                          type: string
                        device_path:
                          type: string
                  connections:
                    type: array
                    items:
                      type: object
                      properties:
                        address:
                          type: string
                        remote_port:
                          type: integer
                        state:
                          type: string
                        locally_initiated:
                          type: boolean
              examples:
                response:
                  value:
                    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
                        address: localhost
                        port: 19000
                      - name: restendpoint
                        address: localhost
                        port: 8000
                      - name: adminsecureendpoint
                        address: localhost
                        port: 18500
                      - name: dataendpoint
                        address: localhost
                        port: 16500
                      - name: sqlexternal
                        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
      servers:
        - url: http://oc1-lts0:9090
      x-codeSamples:
        - lang: curl
          label: curl
          source: |-
            curl --location --request GET 'http://oc1-lts0:9090/v1/sysconfig' \
            --header 'Accept: application/json'

````