action clickmeter_domains_get { label: "Retrieve a list of domains" provider: clickmeter method: GET path: "/domains" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } type: { type: "string" enum: ["system", "go", "personal", "dedicated"] } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } } } } }