Get Document Contents

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
GET /transactions/{transactionId}/documents/{documentId}

Returns the content of the specified form or document. If a form GUID is specified, returns it as a PDF. Otherwise returns the document in its existing format.

Optionally append /<version> to the URL to specify the form version or document version number.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

  • documentId string Required

    Document ID or Form GUID

Responses

  • 200

    Document contents returned as a byte stream

  • 401

    Unauthorized

  • 403

    Blank PDF Not Allowed — form has no user-entered contents

  • 404

    Document not found

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