action bbc_get_podcast_by_pid { label: "Podcast" description: "Retrieve data about the podcast with the supplied PID\n" provider: bbc method: GET path: "/podcasts/{pid}" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } limit: { type: "string" } offset: { type: "string" } pid: { type: "string" } } required: ["X-API-Key", "pid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }