For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Developer Tools
CommunityContact UsConsole
HomeAPI ReferenceDocsChangelog
HomeAPI ReferenceDocsChangelog
  • API Reference
      • POSTCopy folder
      • POSTCreate folder
      • DELDelete folder
      • GETList folder children
      • GETList folders
      • PATCHMove folder
      • GETShow folder
      • PATCHUpdate folder
Logo
Developer Tools
CommunityContact UsConsole
API ReferenceFolders

Move folder

PATCH
https://api.frame.io/v4/accounts/:account_id/folders/:folder_id/move
PATCH
/v4/accounts/:account_id/folders/:folder_id/move
1from frameio import Frameio
2from frameio.folders import FolderMoveParamsData
3
4client = Frameio(
5 token="YOUR_TOKEN_HERE",
6)
7
8client.folders.move(
9 account_id="c522c221-d808-42f5-a0d8-eaec78f87498",
10 folder_id="c283287b-c874-4d3e-8320-e50896168219",
11 data=FolderMoveParamsData(
12 parent_id="2e426fe0-f965-4594-8b2b-b4dff1dc00ec",
13 ),
14)
1{
2 "data": {
3 "cover_file_id": "e44e1e23-6fe6-42da-b196-c7628fb7b98f",
4 "created_at": "2023-09-25T19:18:29.614189Z",
5 "id": "67b11ddd-fadc-45f0-ac1d-2f8ae929126c",
6 "name": "My Folder",
7 "parent_id": "06dd2657-2d56-4c80-afcc-482284725745",
8 "project_id": "abdc8443-a4a1-4179-b052-00fe593c841e",
9 "type": "folder",
10 "updated_at": "2024-02-07T16:44:41.986478Z",
11 "view_url": "https://next.frame.io/project/d5e6011c-2bc9-4596-be05-77d562627112/view/5a89a9fb-0900-4b23-826b-127b90e4db4c"
12 }
13}

Move folder to a folder.
Rate Limits: 10 calls per 1.00 minute(s) per account_user

Was this page helpful?
Previous

Show folder

Next

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

account_idstringRequiredformat: "uuid"
A UUID String
folder_idstringRequiredformat: "uuid"
A UUID String

Request

Request body
dataobjectRequired

Response

OK
dataobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
422
Unprocessable Entity Error
429
Too Many Requests Error