I'm having a lot of trouble working with legacy Paper docs with the API (using Python SDK). Some specific questions:
- How do I get metadata for a Paper doc? I tried getting list of `doc_ids` from `paper_docs_list`, but then a subsequent call to `files_get_metadata` fails with path not found (I'm setting `path` to `id:<doc_id>` from the above call).
- How do I get metadata for a Paper folder? I'm able to see some folder info using `paper_docs_get_folder_info` but then when I pass in the `id` from response above into `files_get_metadata`, it fails
What I'm trying to accomplish is something like the following:
- iterate over all legacy Paper docs that I created
- for any that are unfiled, move them to a new "Legacy Docs" folder
- for any that already belong in a folder, move that folder under the "Legacy Docs" folder
Thanks!