Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| name | string | The name of the folder. |
| description | string | Optional description of the folder. |
| parent_folder_id | object | |
| pass_through | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateFolderRequest",
"title": "UpdateFolderRequest",
"type": "object",
"x-apideck-schema-id": "UpdateFolderRequest",
"additionalProperties": false,
"properties": {
"id": {
"$ref": "#/components/schemas/Id"
},
"name": {
"type": "string",
"description": "The name of the folder.",
"example": "Documents"
},
"description": {
"type": "string",
"description": "Optional description of the folder.",
"example": "My Personal Documents"
},
"parent_folder_id": {
"$ref": "#/components/schemas/ParentFolderId"
},
"pass_through": {
"$ref": "#/components/schemas/PassThroughBody"
}
}
}