Update Title Order Status

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-status/{status}

Allows a title partner to update the status of a title order associated with a transaction.

Path parameters

  • transactionId string(uuid) Required

    Transaction GUID

  • status string Required

    New title order status

    Values are Pending, Delivered, Open, Closed, Cancelled, or ClearCleared.

Responses

  • 200

    Title order status updated successfully

  • 401

    Unauthorized

  • 404

    Transaction not found

POST /transactions/{transactionId}/title-order-status/{status}
curl \
 --request POST 'https://ws.zipformplus.com/api/transactions/{transactionId}/title-order-status/{status}' \
 --header "X-Auth-ContextId: $API_KEY"