action stream_io_api_delete_block_list { label: "Delete block list" description: "Deletes previously created application blocklist" provider: stream_io_api method: DELETE path: "/blocklists/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }