action combell_get_account { label: "Get a specific account" description: "" provider: combell method: GET path: "/accounts/{accountId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } account_id: { type: "integer" format: "int32" description: "The id of the account." } } required: ["accountId", "account_id"] additionalProperties: false } output: { type: "object" description: "A detailed representation of an account." properties: { addons: { type: "array" description: "A list of addons applied to the account." items: { type: "object" description: "Addon information" properties: { id: { type: "integer" format: "int32" description: "The id of the addon" } name: { type: "string" description: "The name of the addon" } } additionalProperties: false } } id: { type: "integer" format: "int32" description: "The id of the account" } identifier: { type: "string" description: "Identifier for the account" } servicepack: { type: "object" description: "Servicepack information." properties: { id: { type: "integer" format: "int32" description: "The id of the service pack" } name: { type: "string" description: "The name of the service pack" } } additionalProperties: false } } additionalProperties: false } }