v1

latestOpenAPI 3.1.0Apache 2.02026-07-17870411.0 KB
Target Nodes

Retrieve software stacks

Get a list of all available software stacks or a specific software stack by ID

get/api/target_nodes/software_stacks

Query parameters

software_stack_idstring
Example:1

ID of specific software stack to retrieve

Headers

X-EDH-USERstring required
Example:admin

EDH username for authentication

X-EDH-TOKENstring required
Example:abc123token

EDH authentication token

Response

Successfully retrieved software stacks

successboolean required
messageobject required

Example response

{
  "success": true,
  "message": {
    "1": {
      "id": 1,
      "stack_name": "Ubuntu 20.04",
      "ami_id": "ami-12345678",
      "root_size": 20,
      "project_ids": [
        1,
        2
      ]
    }
  }
}