How can I delete subscriptions canceled_date or set it to any date? python api

How can I delete subscriptions canceled_date or set it to any date?
python api

You can make an UpdateSubscription request and just pass an empty value for canceled_date ie:

{
    "subscription": {
      "canceled_date": "",
      ...
    }
}

Hi, Will >this still work?

You’ll want to set set the field value to null to clear the canceled_date like our example in our documentation. :slightly_smiling_face: