action stream_io_api_update_users_partial { label: "Partially update user" description: "Updates certain fields of the user" provider: stream_io_api method: PATCH path: "/users" encoding: json input: { type: "object" required: ["id", "set", "unset"] properties: { id: { type: "string" description: "User ID to update" } set: { type: "object" } unset: { type: "array" items: { type: "string" } } } } output: { type: "object" required: ["duration", "users"] properties: { duration: { type: "string" } users: { type: "object" description: "Object containing users" } } } }