action combell_get_domains { label: "Overviews of domains" provider: combell method: GET path: "/domains" encoding: json input: { type: "object" properties: { 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: { domain_name: { type: "string" description: "The domain name" } expiration_date: { type: "string" format: "date-time" description: "Expiration date of the domain" } will_renew: { type: "boolean" description: "Indication of renewal.
\nNo value indicates that the renewal state could not be determined at the moment." } } additionalProperties: false } } }