action bbc_get_personalised_radio_plays { label: "Played Episode or Clip" description: "Returns mixed episode and clip plays for a given BBC iPlayer radio user.\n\nN.B. Swagger schemas cannot currently handle multiple combinations of object in an array i.e. a mix of Episode\nand Clip Summaries so we are defining data as a Programme Summary here. This will be resolved in V3 with full support for\n anyOf https://www.openapis.org/blog/2017/01/24/a-new-year-a-new-specification\n" provider: bbc method: GET path: "/my/radio/plays" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } "X-API-Key": { type: "string" } "X-Authentication-Provider": { type: "string" } limit: { type: "string" } offset: { type: "string" } show_all_activity: { type: "string" } sort: { type: "string" } } required: ["Authorization", "X-API-Key", "X-Authentication-Provider"] additionalProperties: false } output: { type: "object" additionalProperties: true } }