pressable_get_backup_download_url
Retrieve a downloadable URL for a specific site backup to access or restore data. Provide the site ID and backup ID to generate the secure download link.
Instructions
Get a download URL for a specific backup.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_id | Yes | ||
| backup_id | Yes |
Implementation Reference
- tools/backups.js:65-78 (handler)The registration and handler implementation for the 'pressable_get_backup_download_url' tool.
name: 'pressable_get_backup_download_url', description: 'Get a download URL for a specific backup.', inputSchema: { type: 'object', properties: { site_id: { type: 'string' }, backup_id: { type: 'integer' } }, required: ['site_id', 'backup_id'] }, handler: async (args) => { return await api.get(`/sites/${args.site_id}/backups/${args.backup_id}`); } }