action iqualify_patch_offerings_offering_id_channels_channel_id { label: "Update channel" description: "Updates a channel in an offering." provider: iqualify method: PATCH path: "/offerings/{offeringId}/channels/{channelId}" encoding: json input: { type: "object" properties: { group: { type: "object" properties: { autoAssign: { type: "boolean" } } } groupDiscussion: { type: "boolean" } isBroadcastOnly: { type: "boolean" } privateSupport: { type: "boolean" } title: { type: "string" } } } output: { type: "object" properties: { id: { type: "string" } isBroadcastOnly: { type: "boolean" } title: { type: "string" } } } }