action britbox_update_payment_method_strong { label: "updatePaymentMethodStrong" description: "Change payment method details." provider: britbox method: PUT path: "/itv/updatePayment/strong/{platform}" encoding: json input: { type: "object" properties: { paymentMethodFromToken: { type: "string" description: "A paymentMethodFromToken." } paymentMethodId: { type: "string" description: "The paymentMethodId from Stripe." } platform: { type: "string" } profileToken: { type: "string" description: "The ITV profile token." } } required: ["platform", "profileToken"] additionalProperties: false } output: { type: "object" additionalProperties: true } }