Skip to main content
POST
/
v1
/
cluster
/
config
Leader pushes config to peers
curl --request POST \
  --url http://127.0.0.1:22100/v1/cluster/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "ok": true,
  "generation": 123,
  "validated": 123,
  "committed": 123,
  "quorum": 123,
  "scope": "http_push",
  "reason": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Raw Arc config JSON document.

Response

Push accepted

ok
boolean
required
generation
integer<int64>
required
validated
integer<int32>
committed
integer<int32>
quorum
integer<int32>
scope
enum<string>
Available options:
http_push,
gossip
reason
string