action appwrite_database_delete_document { label: "Delete Document" description: "Delete a document by its unique ID. This endpoint deletes only the parent documents, its attributes and relations to other documents. Child documents **will not** be deleted." provider: appwrite method: DELETE path: "/database/collections/{collectionId}/documents/{documentId}" encoding: json input: { type: "object" properties: { collectionId: { type: "string" } documentId: { type: "string" } } required: ["collectionId", "documentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }