Get constructors

GET /platform/infrastructure/constructors

Retrieves an overview of all constructors in an ECE installation.

Responses

  • An overview of all constructors.

    Hide response attribute Show response attribute object
    • constructors array[object] Required
      Hide constructors attributes Show constructors attributes object
      • status object Required

        The health status of the constructor.

        Additional properties are allowed.

        Hide status attributes Show status attributes object
        • connected boolean Required

          Whether the constructor is connected

        • maintenance_mode boolean Required

          Whether the constructor is in maintenance mode

      • constructor_id string Required

        Identifier for this constructor

GET /platform/infrastructure/constructors
curl \
 -X GET https://{{hostname}}/api/v1/platform/infrastructure/constructors
Response examples (200)
{
  "constructors": [
    {
      "status": {
        "connected": true,
        "maintenance_mode": true
      },
      "constructor_id": "string"
    }
  ]
}