Activepieces · Schema

CreateFolderRequest

CreateFolderRequest schema from Activepieces API

AutomationNo-CodeOpen SourceWorkflowAI AgentsMCP

Properties

Name Type Description
displayName string Folder name
projectId string Project ID
View JSON Schema on GitHub

JSON Schema

activepieces-create-folder-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-schema/activepieces-create-folder-request-schema.json",
  "title": "CreateFolderRequest",
  "description": "CreateFolderRequest schema from Activepieces API",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Folder name",
      "example": "My Folder"
    },
    "projectId": {
      "type": "string",
      "description": "Project ID"
    }
  },
  "required": [
    "displayName",
    "projectId"
  ]
}