action prss_get_api_v2_programs_id { label: "Returns the program matching the given ID." provider: prss method: GET path: "/api/v2/programs/{id}" encoding: json output: { type: "object" description: "A program that stations can subscribe to to get live or file content." required: ["title"] properties: { 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 program." } id: { type: "integer" format: "int64" description: "The unique ID of the program. Generated at creation." } lastModifiedDate: { type: "string" format: "date-time" description: "The date the program was last modified/updated. Automatically updated on any write operation." } title: { type: "string" description: "The title of the program." } } } }