Figranium automatically tracks changes to your tasks, allowing you to review history and roll back to previous states if an update breaks your workflow.Documentation Index
Fetch the complete documentation index at: https://figranium.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Creating Versions
A new version is created every time you save a task with the Create Version option enabled in the UI.- Automatic Snapshots: The system captures the entire task configuration, including actions, variables, and settings.
- Retention: By default, Figranium keeps the last 30 versions per task to optimize storage.
Reviewing History
In the Task Editor, switch to the History tab to see a chronological list of all saved versions.- Timestamp: See exactly when each change was made.
- Metadata: View the name and mode of the task at that point in time.
Rolling Back
If you need to restore an older version of a task:- Navigate to the History tab in the Editor.
- Select the version you want to restore.
- Click Rollback.
API Management
Versions can be managed via the REST API:- List Versions:
GET /api/tasks/:id/versions - Get Version Snapshot:
GET /api/tasks/:id/versions/:versionId - Rollback:
POST /api/tasks/:id/rollback - Clear History:
POST /api/tasks/:id/versions/clear