update_drawing
Modify existing Excalidraw diagrams by providing the drawing ID and updated content to make changes to stored visual diagrams.
Instructions
Update an Excalidraw drawing by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"minLength": 1,
"type": "string"
},
"id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"id",
"content"
],
"type": "object"
}