--- layout: "http" page_title: "HTTP API: /v1/operator/" sidebar_current: "docs-http-operator" description: > The '/v1/operator/' endpoints provides cluster-level tools for Nomad operators. --- # /v1/operator The Operator endpoint provides cluster-level tools for Nomad operators, such as interacting with the Raft subsystem. This was added in Nomad 0.5.5 ~> Use this interface with extreme caution, as improper use could lead to a Nomad outage and even loss of data. See the [Outage Recovery](/guides/outage.html) guide for some examples of how these capabilities are used. For a CLI to perform these operations manually, please see the documentation for the [`nomad operator`](/docs/commands/operator-index.html) command. By default, the agent's local region is used; another region can be specified using the `?region=` query parameter. ## GET
Description
Query the status of a client node registered with Nomad.
Method
GET
URL
`/v1/operator/raft/configuration`
Parameters
Returns
```javascript { "Servers": [ { "ID": "127.0.0.1:4647", "Node": "alice", "Address": "127.0.0.1:4647", "Leader": true, "Voter": true }, { "ID": "127.0.0.2:4647", "Node": "bob", "Address": "127.0.0.2:4647", "Leader": false, "Voter": true }, { "ID": "127.0.0.3:4647", "Node": "carol", "Address": "127.0.0.3:4647", "Leader": false, "Voter": true } ], "Index": 22 } ```
Field Reference
`Server` Fields:
## DELETE
Description
Remove the Nomad server with given address from the Raft configuration. The return code signifies success or failure.
Method
DELETE
URL
`/v1/operator/raft/peer`
Parameters
Returns
None