Get List of Templates

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 /templates

Returns the list of templates available to the authenticated user. Optionally filter by office using the path /templates/<office ID>.

Responses

  • 200 application/json

    Template list returned successfully

    Hide response attributes Show response attributes object
    • id string
    • name string
  • 401

    Unauthorized

  • 403

    Forbidden

GET /templates
curl \
 --request GET 'https://api.pre.zipformplus.com/api/templates' \
 --header "X-Auth-ContextId: $API_KEY"
Response examples (200)
[
  {
    "id": "string",
    "name": "string"
  }
]