Get coordinators

GET /platform/infrastructure/coordinators

Retrieves an overview of all coordinators.

Responses

  • An overview of all coordinators.

    Hide response attribute Show response attribute object
    • coordinators array[object] Required

      Summarized information on each coordinator

      Hide coordinators attributes Show coordinators attributes object
      • name string Required

        Name of this coordinator

      • public_hostname string Required

        Public hostname of this coordinator

      • leader_port integer(int32) Required

        Leader port of this coordinator

      • election_port integer(int32) Required

        Election port of this coordinator

      • client_port integer(int32) Required

        Client port of this coordinator

      • attributes object Required

        Attributes of this coordinator

        Hide attributes attribute Show attributes attribute object
        • * string Additional properties
GET /platform/infrastructure/coordinators
curl \
 -X GET https://{{hostname}}/api/v1/platform/infrastructure/coordinators
Response examples (200)
{
  "coordinators": [
    {
      "name": "string",
      "public_hostname": "string",
      "leader_port": 42,
      "election_port": 42,
      "client_port": 42,
      "attributes": {
        "additionalProperty1": "string",
        "additionalProperty2": "string"
      }
    }
  ]
}