action stream_io_api_create_block_list { label: "Create block list" description: "Creates a new application blocklist, once created the blocklist can be used by any channel type" provider: stream_io_api method: POST path: "/blocklists" encoding: json input: { type: "object" description: "Block list contains restricted words" required: ["name", "words"] properties: { name: { type: "string" description: "Block list name" } words: { type: "array" description: "List of words to block" items: { type: "string" } } } } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }