Release Notes for Q1 2026 are now live. Check it for the most recent changes and updates. For a complete overview of all Totogi releases, visit the Release Notes Archive.
New Functionality
- -
Changed Functionality
- Dec 03, 2025 Following deprecated Plan APIs have been removed. If your systems, tools, or demo scripts directly call any of these APIs, please update them to avoid disruption.
Deprecated APIs and Replacements
DeletePlanInput- Deprecated. UseplanIDandproviderIDas separate top-level fields instead.updatePlanInput-planIDandproviderIDinside the input object are deprecated. They are now passed as top-level fields. Thenamefield inside the input remains valid.-
makePlanNotAssignable– Deprecated. UsemakePlanAssignablewithrevert: trueinstead. UpdatePlanResult– Now referencesPlanPayloadinstead ofUpdatePlanPayload.
- Nov 19, 2025 Totogi now generates improved Event Data Records (EDRs) for plan updates and deletions. These include
beforeandaftervalues 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
- -
Ozlem Gok
Comments