action britbox_change_email { label: "changeEmail" description: "Change email address related to account/profile.\n\nThe expected token scope is Settings.\n" provider: britbox method: POST path: "/itv/changeemail" encoding: json input: { type: "object" required: ["email", "profileToken"] properties: { email: { type: "string" description: "New email address for account/profile." } profileToken: { type: "string" description: "The ITV profile token." } } additionalProperties: false } output: { type: "object" additionalProperties: true } }