Canva · Schema

Folder

A Canva folder

AppsAutomationBrand ManagementCollaborationDesignGraphicsMarketingPrintTemplatesVisual Content

Properties

Name Type Description
id string The folder ID
name string The folder name
created_at integer Unix timestamp in seconds when the folder was created
updated_at integer Unix timestamp in seconds when the folder was last updated
View JSON Schema on GitHub

JSON Schema

canva-connect-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Folder",
  "type": "object",
  "description": "A Canva folder",
  "properties": {
    "id": {
      "type": "string",
      "description": "The folder ID"
    },
    "name": {
      "type": "string",
      "description": "The folder name"
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp in seconds when the folder was created"
    },
    "updated_at": {
      "type": "integer",
      "description": "Unix timestamp in seconds when the folder was last updated"
    }
  }
}