action britbox_update_profile_with_id { label: "updateProfileWithId" description: "Update the summary of a profile with a specific id under the active account.\n\nThis supports partial updates so you can send just the properties you wish to update.\n" provider: britbox method: PATCH path: "/account/profiles/{id}" encoding: json input: { type: "object" properties: { heroAutoplay: { type: "boolean" description: "Sets the Hero row clip auto playback enabled" } heroWithAudio: { type: "boolean" description: "Sets the Hero row clip auto playback audio enabled" } id: { type: "string" } languageCode: { type: "string" description: "The code of the preferred language for the profile.\nMust be a valid ISO language code e.g. \"en-US\" and must match the code of\none of the languages specified in the app config.\nSee https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes\n" } name: { type: "string" description: "The unique name of the profile." } pinEnabled: { type: "boolean" description: "Whether an account pin is required to enter the profile.\n\nIf no account pin is defined this has no impact.\n" } purchaseEnabled: { type: "boolean" description: "Whether the profile can make purchases with the account payment options." } segments: { type: "array" description: "The segments a profile should be placed under" items: { type: "string" } } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }