Add Note to Title Order

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

Allows a title partner to add a note to the title order associated with a transaction.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

application/json

Body Required

  • message string Required

Responses

  • 200

    Note added successfully

  • 401

    Unauthorized

  • 404

    Transaction not found

POST /transactions/{transactionId}/title-order-note
curl \
 --request POST 'https://ws.zipformplus.com/api/transactions/{transactionId}/title-order-note' \
 --header "X-Auth-ContextId: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"message":"Submitted order"}'
Request examples
{
  "message": "Submitted order"
}