action iqualify_post_offerings_offering_id_channels { label: "Add channel" description: "Adds new channel to the specified offering." provider: iqualify method: POST path: "/offerings/{offeringId}/channels" encoding: json input: { type: "object" required: ["title"] properties: { isBroadcastOnly: { type: "boolean" } title: { type: "string" } } } output: { type: "object" properties: { id: { type: "string" } isBroadcastOnly: { type: "boolean" } title: { type: "string" } } } }