action pressassociation_list_channels { label: "Channel Collection" description: "If you are interested in a list of channels that have had there schedule updated you can filter by the following query params.\n - scheduleStart\n - scheduleEnd\n - scheduleUpdatedSince\n\nadding these query params will filter the channel collection to only return channels that have been updated within the given range, updatedSince stores the state of your previous call.\n\nExample Usage: Every 10 minutes get me the channels that have updated schedules for the next 2 weeks.\n\n/channel?platform={uuid}&scheduleStart={today}&scheduleEnd={today + 2 weeks}&updatedSince={10 minutes ago}\n\nAlso please note epg numbers are only exposed when a platform and region are passed to the query." provider: pressassociation method: GET path: "/channel" encoding: json input: { type: "object" properties: { aliases: { type: "boolean" } date: { type: "string" } platformId: { type: "string" } regionId: { type: "string" } scheduleEnd: { type: "string" } scheduleStart: { type: "string" } scheduleUpdatedSince: { type: "string" } } additionalProperties: false } output: { type: "object" } }