action akeneo_channels_patch { label: "Update/create a channel" description: "This endpoint allows you to update a given channel. Know more about Update behavior. Note that if no channel exists for the given code, it creates it." provider: akeneo method: PATCH path: "/api/rest/v1/channels/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }