action openchannel_patch_users_user_id { label: "Updates user fields" provider: openchannel method: PATCH path: "/users/{userId}" encoding: json input: { type: "object" properties: { customData: { type: "string" } email: { type: "string" } name: { type: "string" } type: { type: "string" } userId: { type: "string" } username: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }