action clever_cloud_get_organisations_id_applications_app_id_addons_env { label: "getOrganisationsIdApplicationsAppIdAddonsEnv" provider: clever_cloud method: GET path: "/organisations/{id}/applications/{appId}/addons/env" encoding: json output: { type: "array" items: { type: "object" required: ["addon_id", "addon_name", "env", "provider_id"] properties: { addon_id: { type: "string" } addon_name: { type: "string" } env: { type: "array" items: { type: "object" required: ["name", "value"] properties: { name: { type: "string" } value: { type: "string" } } } } provider_id: { type: "string" } } } } }