action openchannel_patch_user_accounts_user_account_id { label: "Updates the user account fields" provider: openchannel method: PATCH path: "/userAccounts/{userAccountId}" encoding: json input: { type: "object" properties: { customData: { type: "string" } email: { type: "string" } name: { type: "string" } userAccountId: { type: "string" } userId: { type: "string" } } required: ["userAccountId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }