Delete Document

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/zipform-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "ZipForm API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/zipform-api/mcp"
  }
}

Close
DELETE /transactions/{transactionId}/documents/{documentId}

Deletes the specified form or document from the transaction.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

  • documentId string Required

    Document ID or Form GUID

Responses

  • 200

    Document deleted successfully

  • 401

    Unauthorized

  • 404

    Document not found

DELETE /transactions/{transactionId}/documents/{documentId}
curl \
 --request DELETE 'https://api.pre.zipformplus.com/api/transactions/{transactionId}/documents/{documentId}' \
 --header "X-Auth-ContextId: $API_KEY"