salesforce_backup
Back up Salesforce data and file attachments asynchronously. Choose full, incremental, or files-only backups with configurable options for objects, compression, and parallel downloads.
Instructions
Start comprehensive backups of Salesforce data including all file attachments. Runs asynchronously in background - returns immediately with job ID. Check progress with salesforce_backup_status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| backup_type | No | Type of backup to perform: 'full' backs up everything, 'incremental' backs up changes since a date, 'files_only' backs up just attachments | incremental |
| include_files | No | Include modern Files (ContentDocument/ContentVersion) in backup | |
| include_attachments | No | Include legacy Attachment files in backup | |
| include_documents | No | Include Document object files in backup | |
| objects_filter | No | Specific objects to backup (empty array = all objects). Example: ['Account', 'Contact', 'CustomObject__c'] | |
| since_date | No | ISO date for incremental backup - only backup records modified after this date. Format: YYYY-MM-DDTHH:mm:ss.sssZ | |
| compression | No | Compress backup files with gzip to save space | |
| parallel_downloads | No | Number of parallel file downloads (1-10). Higher values = faster but more API usage |