I’m happy to hear you could authenticate using Postman after capturing the Bearer Token directly. I will engage the appropriate contacts about possibly using an API to download all files and metadata from your workspaces in Bluescape. As soon as we have more information, we will respond here.
We don’t have a public bulk API for this type of export request. However, we have an API api/v3/workspaces/{workspace}/elements that can list all elements in a workspace. For elements that represent uploaded assets, like images, videos, and documents, the response will contain brief information regarding metadata about the assets and signed S3 URLs pointing to the assets themselves. Suppose you want to export all assets in a workspace using the API above. In that case, you will need to keep in mind that the download URLs provided expire in five minutes from the time of the query (in order to enforce access controls when users are removed from the workspace). So you may need to write your own script, which first queries api/v3/workspaces/{workspace}/elements to identify the element ids for all the elements you wish to download, then individually queries assets (using api/v3/workspaces/{workspace}/elements/{id} ) before downloading the returned URL.
I have a working script, and i managed to download the contents of the workspaces. I think it will be useful to have a visual export of the workspace layout. I can do that manually but i was wondering if there’s an “optimized” way to generate such export (it is basically a screenshot of the workspace).
I will look into the API docs, but any help is appreciated.