action clever_cloud_get_organisations_id_addonproviders_provider_id { label: "getOrganisationsIdAddonprovidersProviderId" provider: clever_cloud method: GET path: "/organisations/{id}/addonproviders/{providerId}" encoding: json output: { type: "object" description: "A provider" required: ["analyticsId", "canUpgrade", "googlePlusName", "id", "logoUrl", "longDesc", "name", "openInNewTab", "regions", "shortDesc", "status", "supportEmail", "twitterName", "website"] properties: { analyticsId: { type: "string" description: "The id of the analytics page link to this addon" } canUpgrade: { type: "boolean" description: "Can the addon be upgraded" } features: { type: "array" items: { type: "object" required: ["name", "type", "value"] properties: { name: { type: "string" description: "The name of the properties" } type: { type: "string" description: "The type of the feature" } value: { type: "string" description: "The value of the feature" } } } } googlePlusName: { type: "string" description: "The name of the google + page link to this addon (could be empty)" } id: { type: "string" description: "The id of the provider" } logoUrl: { type: "string" description: "The url of the addon's logo" } longDesc: { type: "string" description: "A less concise description of the addon" } name: { type: "string" } openInNewTab: { type: "boolean" description: "Does the addon panel need to be open in a new tab" } plans: { type: "array" items: { type: "object" required: ["features", "id", "name", "price", "slug"] properties: { features: { type: "array" description: "The list of the feature in the addon" items: { type: "object" additionalProperties: true } } id: { type: "string" description: "`plan_${uuid}`" } name: { type: "string" description: "Name of the pan" } price: { type: "integer" format: "int32" } slug: { type: "string" } } } } regions: { type: "array" description: "The differents regions where the addon is available" items: { type: "string" } } shortDesc: { type: "string" description: "A short description of the addon" } status: { type: "string" description: "The status of this addon (RELEASE, BETA, ...)" } supportEmail: { type: "string" description: "The mail to contact in case of issue with this addon" } twitterName: { type: "string" description: "The name of the user to contact on twitter for this addon (could be empty)" } website: { type: "string" description: "The website of the provider. If the addon is developped by clever-cloud, the site is \"http://www.clever-cloud.com/\"" } } } }