Start a conversation

2025 Q4 Release Notes

This topic will be updated throughout the quarter as we improve the product. For a complete overview of all Totogi releases, visit the Release Notes Archive.

Additionally, to stay ahead of future releases, check out Upcoming Changes . This topic provides detailed information on expected changes, helping you to plan and adapt your systems and integrations effectively.

New Functionality

  • -

Changed Functionality

  • Nov 19, 2025 Totogi now generates improved Event Data Records (EDRs) for plan updates and deletions. These include before and after values to provide better visibility into changes made to plans.

These EDRs are triggered by the new input format used in the updatePlan and deletePlan APIs. Plan Design has already been updated to use these new API formats. Any plan updates or deletions made through the UI now produce EDRs in the enhanced structure.

⚠️ Action Required
If your systems or downstream consumers process Plan EDRs, please review and adjust them to correctly handle the updated structure. This will help avoid any parsing issues or data mismatches.

Example: Delete Plan EDR

Before:

{
  "calledby": "plan.user@providerdemo.com",
  "planid": "7fd2c6af-d303-4b23-a09b-b11dbf9699b2"
}

After:

{
  "calledby": "plan.user@providerdemo.com",
  "plan": {
    "id": "7fd2c6af-d303-4b23-a09b-b11dbf9699b2",
    "before": {
      "name": "Standard Data Plan"
    }
  }
}

Example: Update Plan EDR

Before:

{
  "calledby": "plan.user@providerdemo.com",
  "planid": "7fd2c6af-d303-4b23-a09b-b11dbf9699b2",
  "name": "Standard Data Plan-Updated"
}

After:

{
  "calledby": "plan.user@providerdemo.com",
  "plan": {
    "id": "7fd2c6af-d303-4b23-a09b-b11dbf9699b2",
    "before": {
      "name": "Standard Data Plan"
    },
    "after": {
      "name": "Standard Data Plan – Updated"
    }
  }
}

Fixes and Improvements 

  • -
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Ozlem Gok

  2. Posted

Comments