action britbox_get_anon_next_playback_item { label: "getAnonNextPlaybackItem" description: "Identical to GET /account/profile/items/{itemId}/next route but for users\nthat are not logged in i.e. this endpoint does not require authorisation\n" provider: britbox method: GET path: "/items/{itemId}/next" encoding: json input: { type: "object" properties: { expand: { type: "string" enum: ["parent", "ancestors"] } itemId: { type: "string" } max_rating: { type: "string" } } required: ["itemId"] additionalProperties: false } output: { type: "object" required: ["sourceItemId"] properties: { firstWatchedDate: { type: "string" format: "date-time" description: "Time when the item corresponding to the itemId passed in by the client was\nfirst watched by the user. Will be `undefined` if the user has never\nwatched the item.\n\nIt can be used to identify the scenario where the user has never watched a\nshow and we are suggesting they watch the first episode (i.e. it is\nmissing in this scenario)\n\n**This will only be populated when a `showId` is passed in**\n" } lastWatchedDate: { type: "string" format: "date-time" description: "Time when the item corresponding to the itemId passed in by the client was\nlast watched by the user. Will be `undefined` if the user has never\nwatched the item.\n\nIt can be used to identify the scenario where the user has never watched a\nshow and we are suggesting they watch the first episode (i.e. it is\nmissing in this scenario)\n\n**This will only be populated when a `showId` is passed in**\n" } next: { type: "object" } sourceItemId: { type: "string" description: "The id of the item used to determine the next item to play." } suggestionType: { type: "string" description: "Field indicating the type or reason behind the suggestion.\n\nId Type | Show Watched Status| Value | Description\n----------|--------------------|------------------|---------------------------------\nshowId | Unwatched | StartWatching |\nshowId | Completely watched | RestartWatching |\nshowId | Partly watched | ContinueWatching | Suggested episode partly watched\nshowId | Partly watched | Sequential | Suggested episode unwatched\nepisodeId | Any | Sequential | Next episode in show\n" enum: ["StartWatching", "ContinueWatching", "RestartWatching", "Sequential", "None"] } } additionalProperties: false } }