action clickmeter_account_get_domain_whitelist { label: "Retrieve list of a domains allowed to redirect in DDU mode" provider: clickmeter method: GET path: "/account/domainwhitelist" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } } } } } }