action britbox_update_subscription { label: "updateSubscription" description: "Renew a cancelled subscription or switch subscription to a different plan.\n\nWhen renewing a cancelled subscription membership, hit this endpoint with\nthe id of subscription to renew.\n\nTo switch plans provide the id of the current active subscription membership\nof the account, and in the query specify the id of the plan to switch to.\n" provider: britbox method: PUT path: "/account/billing/subscriptions/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } planId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }