action combell_get_accounts { label: "Overview of accounts" provider: combell method: GET path: "/accounts" encoding: json input: { type: "object" properties: { asset_type: { type: "string" description: "Asset types" enum: ["domain", "linux_hosting", "mysql", "dns", "mailbox", "windows_hosting"] } identifier: { type: "string" description: "Return only accounts, matching the specified identifier." } skip: { type: "integer" format: "int32" description: "The number of items to skip in the resultset." } take: { type: "integer" format: "int32" description: "The number of items to return in the resultset. The returned count can be equal or less than this number." } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int32" description: "The id of the account" } identifier: { type: "string" description: "Identifier for the account" } servicepack_id: { type: "integer" format: "int32" description: "The servicepack id that defines the account." } } additionalProperties: false } } }