action clever_cloud_get_organisations { label: "getOrganisations" provider: clever_cloud method: GET path: "/organisations" encoding: json input: { type: "object" properties: { user: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["VAT", "address", "avatar", "city", "company", "country", "description", "id", "name", "vatState", "zipcode"] properties: { VAT: { type: "string" } address: { type: "string" } avatar: { type: "string" } city: { type: "string" } company: { type: "string" } country: { type: "string" } description: { type: "string" } id: { type: "string" } name: { type: "string" } vatState: { type: "string" } zipcode: { type: "string" } } } } }