v3

latestOpenAPI 3.0.0©2023 All Rights Reserved2026-08-0659315450.0 KB
folder

Updates a folder's details using its folderID. Currently, you can only update a folder's name.

patch/v1/folders/{folderId}

Path parameters

folderIdstring required

The folder ID.

Request body

namestring required

The folder name, as shown in the Canva UI.

Example request

{
  "name": "My awesome holiday"
}

Response

OK

Example response

{
  "folder": {
    "id": "FAF2lZtloor",
    "name": "My awesome holiday",
    "created_at": 1377396000,
    "updated_at": 1692928800,
    "thumbnail": {
      "width": 595,
      "height": 335,
      "url": "https://document-export.canva.com/Vczz9/zF9vzVtdADc/2/thumbnail/0001.png?<query-string>"
    }
  }
}