action britbox_get_item_bookmark { label: "getItemBookmark" description: "Get the bookmark for an item under the active profile." provider: britbox method: GET path: "/account/profile/bookmarks/{itemId}" encoding: json input: { type: "object" properties: { itemId: { type: "string" } } required: ["itemId"] additionalProperties: false } output: { type: "object" required: ["creationDate", "itemId"] properties: { creationDate: { type: "string" format: "date-time" description: "The date the bookmark was created." } itemId: { type: "string" description: "The id of the item bookmarked." } } additionalProperties: false } }