Data Migration Guide
Migrate data between Gauzy instances or from other platforms.
Exporting Dataβ
API Exportβ
curl -H "Authorization: Bearer $TOKEN" \
https://api.example.com/api/export?entities=Employee,Task,TimeLog \
-o gauzy-export.json
Database Exportβ
pg_dump -h $DB_HOST -U $DB_USER gauzy > gauzy_full_backup.sql
Importing Dataβ
From JSONβ
curl -X POST -H "Authorization: Bearer $TOKEN" \
-F "[email protected]" \
https://api.example.com/api/import
From Other Platformsβ
| Platform | Method |
|---|---|
| Hubstaff | Built-in integration sync |
| Upwork | Built-in integration sync |
| Toggl | CSV export β Gauzy import |
| Harvest | CSV export β Gauzy import |
| Custom | Use the REST API |