action rumble_get_account_sites { label: "Get all sites details across all organizations" provider: rumble method: GET path: "/account/sites" encoding: json input: { type: "object" properties: { search: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { created_at: { type: "integer" format: "int64" } description: { type: "string" } excludes: { type: "string" } id: { type: "string" format: "uuid" } name: { type: "string" } permanent: { type: "boolean" } scope: { type: "string" } subnets: { type: "object" } updated_at: { type: "integer" format: "int64" } } } } }