action prss_get_api_v2_episodes_id { label: "Returns the episode matching the given ID." provider: prss method: GET path: "/api/v2/episodes/{id}" encoding: json output: { type: "object" description: "An episode that defines a specific air date for an instance of a program." required: ["beginAirDate", "endAirDate", "programId", "title"] properties: { beginAirDate: { type: "string" format: "date-time" description: "The date the air window opens for the episode." } beginTransmissionDate: { type: "string" format: "date-time" description: "The date the live stream begins for the episode. Only set for live and LWSF episodes." } createdDate: { type: "string" format: "date-time" description: "The date the segment was created. Generated at creation." } customerId: { type: "integer" format: "int64" description: "The ID of the customer that owns this programs." } endAirDate: { type: "string" format: "date-time" description: "The date the air window closes for the episode." } endTransmissionDate: { type: "string" format: "date-time" description: "The date the live stream ends for the episode. Only set for live and LWSF episodes." } id: { type: "integer" format: "int64" description: "The unique ID of the episode. Generated at creation." } lastModifiedDate: { type: "string" format: "date-time" description: "The date the segment was last modified/updated. Automatically updated on any write operation." } programId: { type: "integer" format: "int64" description: "The ID of the program that owns this episode." } title: { type: "string" description: "The title of the program." } } } }