Update Folder

APIs.ioEngineeringPlatform

Properties

Name Type Description
folder object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-updatepanfolder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/updatePanFolder",
  "title": "Update Folder",
  "type": "object",
  "properties": {
    "folder": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "The folder's new name.",
          "example": "Billing"
        },
        "description": {
          "type": "string",
          "description": "The folder's updated description.",
          "example": "The Billing API."
        },
        "parentFolderId": {
          "type": "integer",
          "description": "The folder's new parent folder ID.",
          "example": 0
        }
      }
    }
  }
}