action britbox_get_item_rating { label: "getItemRating" description: "Get the rating info for an item under the active profile." provider: britbox method: GET path: "/account/profile/ratings/{itemId}" encoding: json input: { type: "object" properties: { itemId: { type: "string" } } required: ["itemId"] additionalProperties: false } output: { type: "object" required: ["itemId", "rating"] properties: { itemId: { type: "string" description: "The id of the item rated." } rating: { type: "integer" format: "int32" description: "The rating out of 10" } } additionalProperties: false } }