Hi Frame.io team,
I’m working on automating asset ingestion for a project in Frame.io V4 and need to reliably traverse the folder hierarchy.
I can successfully retrieve users for the account using the API, but all attempts to access the project’s root folder or list folders/assets fail with Not Found.
Specifically:
-
GET /v4/accounts/<account_id>/workspaces/<workspace_id>/projects/<project_id>/root_folder
-
GET /v4/accounts/<account_id>/workspaces/<workspace_id>/projects/<project_id>/folders
both return no route found.
My questions:
-
What is the correct API endpoint to retrieve the root folder ID of a project?
-
Once I have the root folder ID, is the /folders/<folder_id>/children endpoint the proper method to recursively traverse folders and list assets?
-
Are there any versioning or header requirements (e.g., x-api-key, api-version) I need to ensure traversal works consistently?
Thanks.