action clever_cloud_get_organisations_id_credits { label: "getOrganisationsIdCredits" provider: clever_cloud method: GET path: "/organisations/{id}/credits" encoding: json output: { type: "object" required: ["count", "dropPrice", "ownerId"] properties: { count: { type: "number" format: "float" } dropPrice: { type: "object" required: ["currency", "value"] properties: { currency: { type: "string" } value: { type: "number" format: "float" } } } ownerId: { type: "string" } } } }