action clickmeter_account_delete_ip_blacklist { label: "Delete an ip blacklist entry" provider: clickmeter method: DELETE path: "/account/ipblacklist/{blacklistId}" encoding: json input: { type: "object" properties: { blacklistId: { type: "string" } } required: ["blacklistId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } ip: { type: "string" } } } }