Add Form to Transaction

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
POST /transactions/{transactionId}/documents/form

Adds a form (by its GUID) to a transaction. Form GUIDs are obtained from the Get Library Forms endpoint.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

application/json

Body Required

  • id string(uuid) Required

    Form GUID from the library

Responses

  • 201 application/json

    Form added successfully. Returns the form GUID.

  • 401

    Unauthorized

  • 404

    Transaction or form not found

POST /transactions/{transactionId}/documents/form
curl \
 --request POST 'https://api.pre.zipformplus.com/api/transactions/{transactionId}/documents/form' \
 --header "X-Auth-ContextId: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"id":"string"}'
Request examples
{
  "id": "string"
}
Response examples (201)
string