Retrieve All Title Order Notes

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}/title-order-note

Retrieves all title notes associated with a transaction.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

Responses

  • 200 application/json

    Title order notes returned successfully

    Hide response attributes Show response attributes object
    • CreatedDate string(date-time)
    • ReadDate string(date-time)
    • Message string
    • Publisher string
  • 401

    Unauthorized

  • 404

    Transaction not found

GET /transactions/{transactionId}/title-order-note
curl \
 --request GET 'https://ws.zipformplus.com/api/transactions/{transactionId}/title-order-note' \
 --header "X-Auth-ContextId: $API_KEY"
Response examples (200)
[
  {
    "CreatedDate": "2026-05-04T09:42:00Z",
    "ReadDate": "2026-05-04T09:42:00Z",
    "Message": "string",
    "Publisher": "string"
  }
]