Portal Community

What Export Produces

An App Studio export is a single .json file (or .appstudio file) containing:

What Is NOT Exported

Not includedWhy
Tenant data recordsExport is a definition bundle, not a data snapshot
Runtime variable valuesVariables are reset to their defaults on app load
Credential IDsCredentials are environment-specific and must be reconfigured in the target environment
Workflow definitionsWorkflows referenced by actions are separate entities managed by Flow Studio
User assignments and sessionsIAM data belongs to Passport, not App Studio

Primary Use Cases

1
Environment Promotion

Build and test in Dev → export → import to Staging → test → import to Production. The same bundle flows through all environments.

2
Tenant Template Distribution

Build a reference app once and distribute it to multiple tenants via import. Each tenant gets their own independent copy.

3
Backup and Rollback

Export before making changes. If the new version has issues, import the previous export to restore the prior state.

4
CI/CD Integration

Use the Export/Import API in deployment pipelines — commit bundle JSON to git, import via API on deploy.

In This Guide