delete_workspace
Permanently remove a workspace by specifying its unique ID using the provided GraphQL API endpoint, ensuring efficient management of AFFiNE workspace resources.
Instructions
Delete a workspace permanently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}