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

# Reload observers

> Re-read config.toml and rebuild primary observer registry. Requires authentication.



## OpenAPI

````yaml /api-reference/gateway-openapi.json post /actions/reload-observers
openapi: 3.1.0
info:
  title: MultiversX Proxy API
  description: >-
    Rust proxy for MultiversX blockchain observer nodes. Forwards HTTP requests
    to shard observers (including metachain, shard id 4294967295).
  version: 1.0.0
servers: []
security: []
tags:
  - name: address
    description: Account and address endpoints
  - name: transaction
    description: Transaction endpoints
  - name: network
    description: Network information
  - name: block
    description: Block queries
  - name: blocks
    description: Blocks by round
  - name: hyperblock
    description: Hyperblock queries
  - name: internal
    description: Internal block data (raw/json)
  - name: validator
    description: Validator statistics and auction
  - name: vm-values
    description: Virtual machine queries
  - name: proof
    description: Merkle proof verification
  - name: node
    description: Node information and heartbeat
  - name: status
    description: Proxy status and metrics
  - name: about
    description: Proxy version info
  - name: actions
    description: Admin actions (secured)
paths:
  /actions/reload-observers:
    post:
      tags:
        - actions
      summary: Reload observers
      description: >-
        Re-read config.toml and rebuild primary observer registry. Requires
        authentication.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request — invalid input
        '500':
          description: Internal error or observer unavailable

````