action rudder_get_nodes_status { label: "Get nodes acceptation status" description: "Get acceptation status (pending, accepted, deleted, unknown) of a list of nodes" provider: rudder method: GET path: "/nodes/status" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getNodesStatus"] } data: { type: "object" description: "List of nodeId and associated status" required: ["nodes"] properties: { nodes: { type: "array" description: "List of nodeId and associated status" items: { type: "object" required: ["id", "status"] properties: { id: { type: "string" format: "uuid (or \"root\")" description: "Unique id of the node" } status: { type: "string" description: "Status of the node" enum: ["pending", "accepted", "deleted", "unknown"] } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }