{ "opencollection": "1.0.0", "info": { "name": "Riverside Business Exports API", "version": "v3" }, "items": [ { "info": { "name": "Exports", "type": "folder" }, "items": [ { "info": { "name": "List All Exports", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/exports", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves all exports in the workspace." }, { "info": { "name": "Get Export", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/exports/:export_id", "params": [ { "name": "export_id", "value": "", "type": "path", "description": "The export ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves details for a specific export by ID." }, { "info": { "name": "Delete Export", "type": "http" }, "http": { "method": "DELETE", "url": "https://platform.riverside.fm/api/v1/exports/:export_id", "params": [ { "name": "export_id", "value": "", "type": "path", "description": "The export ID to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Permanently deletes an export." }, { "info": { "name": "Download Export File", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/exports/:export_id/download", "params": [ { "name": "export_id", "value": "", "type": "path", "description": "The export ID to download" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Download the exported file content." } ] } ], "bundled": true }