action clickmeter_account_get_ip_blacklist { label: "Retrieve list of a ip to exclude from event tracking" provider: clickmeter method: GET path: "/account/ipblacklist" 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" } ip: { type: "string" } } } } } } }