action stream_io_api_update_block_list { label: "Update block list" description: "Updates contents of the block list" provider: stream_io_api method: PUT path: "/blocklists/{name}" encoding: json input: { type: "object" properties: { Name: { type: "string" } name: { type: "string" } words: { type: "array" items: { type: "string" } } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }